Hi
I have connected a SCT013-240V sensor to my ESP32 (+ some discrete components).
I'm geting shitty readings ![]()

Rb 33 kOhm

My goal for test is to only see change in values when load is on/off.
Load I use is an oven at 1000 W.
Can I ask you to see if I have totally misunderstood?
Thanks
// Define the analog pin for sensor input
const int analogPin = 2; // ESP32 GPIO2
void setup() {
Serial.begin(115200);
}
void loop() {
// Read the analog voltage from the sensor
int sensorValue = analogRead(analogPin);
Serial.println(sensorValue);
delay(300);
}
No good info from serial, load or no load, dossn't matter:
