Author Topic: Stanley Meyer's fuel cell theory  (Read 77003 times)

0 Members and 82 Guests are viewing this topic.

Offline Login to see usernames

  • Administrator
  • Hero member
  • ****
  • Posts: 4788
    • water structure and science
Re: Stanley Meyer's fuel cell theory
« Reply #80 on: July 16, 2025, 15:06:13 pm »
Awesome! Let’s now take your water level sensor to the next level by **visualizing capacitance in real time**.

We’ll cover two options:

---

## ✅ **Option 1: Display on OLED Screen (Local Display)**

### 🧰 Components Needed:

* Arduino (Uno or Nano)
* OLED display (e.g., SSD1306, 128x64 I2C)
* Water sensor circuit (same as before)
* 10kΩ resistor

---

### 📦 Libraries to Install in Arduino IDE:

* `Adafruit_GFX`
* `Adafruit_SSD1306`

You can install them via **Tools → Manage Libraries**.

---

### 📟 Arduino Code with OLED Output

```cpp
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>

#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1);

const int sensorPin = A0;
const int chargePin = 8;
const float R = 10000.0;

void setup() {
  Serial.begin(9600);
  pinMode(chargePin, OUTPUT);
  digitalWrite(chargePin, LOW);

  if (!display.begin(SSD1306_SWITCHCAPVCC, 0x3C)) {
    Serial.println(F("OLED not found"));
    while (1);
  }

  display.clearDisplay();
  display.setTextSize(1);
  display.setTextColor(SSD1306_WHITE);
}

void loop() {
  // Discharge
  pinMode(sensorPin, OUTPUT);
  digitalWrite(sensorPin, LOW);
  delay(10);
  pinMode(sensorPin, INPUT);

  // Charge timing
  digitalWrite(chargePin, HIGH);
  unsigned long startTime = micros();
  while (analogRead(sensorPin) < 646); // 63% of 5V
  unsigned long elapsed = micros() - startTime;
  digitalWrite(chargePin, LOW);

  float capacitance = (float)elapsed / R; // in µF
  float capacitance_nF = capacitance * 1000.0;

  // Display
  display.clearDisplay();
  display.setCursor(0, 0);
  display.println("Water Sensor");
  display.print("Time: ");
  display.print(elapsed);
  display.println(" us");
  display.print("Cap: ");
  display.print(capacitance_nF, 2);
  display.println(" nF");
  display.display();

  delay(1000);
}
```

---

## 🌐 **Option 2: ESP32 with Web Dashboard**

If you're using an **ESP32**, you can:

* Host a **local web server**
* Show real-time capacitance readings on a web page (on your phone/computer)

Would you like me to generate the **ESP32 code with a web interface**, or would you prefer MQTT/IoT cloud dashboard integration (like Blynk or ThingSpeak)?

Offline Login to see usernames

  • Moderator
  • Member
  • **
  • Posts: 121
    • https://www.youtube.com/channel/UCp7oJf9m5gRPBi5PFhtsK_w
Re: Stanley Meyer's fuel cell theory
« Reply #81 on: August 19, 2025, 07:56:13 am »
It seems that Chatgpt lives his life

Select an English audio track


« Last Edit: August 19, 2025, 09:17:42 am by tur55 »

Offline Login to see usernames

  • Moderator
  • Member
  • **
  • Posts: 121
    • https://www.youtube.com/channel/UCp7oJf9m5gRPBi5PFhtsK_w
Re: Stanley Meyer's fuel cell theory
« Reply #82 on: August 20, 2025, 21:29:57 pm »

Offline Login to see usernames

  • Moderator
  • Member
  • **
  • Posts: 121
    • https://www.youtube.com/channel/UCp7oJf9m5gRPBi5PFhtsK_w
Re: Stanley Meyer's fuel cell theory
« Reply #83 on: August 26, 2025, 12:00:22 pm »


Offline Login to see usernames

  • Moderator
  • Member
  • **
  • Posts: 121
    • https://www.youtube.com/channel/UCp7oJf9m5gRPBi5PFhtsK_w
Re: Stanley Meyer's fuel cell theory
« Reply #84 on: August 27, 2025, 13:29:05 pm »

Offline Login to see usernames

  • Moderator
  • Member
  • **
  • Posts: 121
    • https://www.youtube.com/channel/UCp7oJf9m5gRPBi5PFhtsK_w
Re: Stanley Meyer's fuel cell theory
« Reply #85 on: September 06, 2025, 08:40:33 am »

Offline Login to see usernames

  • Administrator
  • Hero member
  • ****
  • Posts: 4788
    • water structure and science
Re: Stanley Meyer's fuel cell theory
« Reply #86 on: September 08, 2025, 11:11:29 am »
Tur,

thank you for the nice videos and also for all the testing you do. :)

My theorie about the high voltage usage is that it does not work alone.
As Meyer has hidden in his texts, you should use a pulse of normal low voltage with current, followed by the high voltage pulse.
So, first low voltage with some current, till the first bubble show, and then hit the cell with high voltage.

But be carefull, that you do not create a spark....otherwise: boom!

Offline Login to see usernames

  • Administrator
  • Hero member
  • ****
  • Posts: 4788
    • water structure and science
Re: Stanley Meyer's fuel cell theory
« Reply #87 on: September 08, 2025, 11:13:24 am »
the other theorie is that you always keep a low level of dc current , and then on top of that you hit the high voltage pulses...


cheers!