

The ESP32 Current Transformer (CT) Close Circuit, part ID 32, is a crucial component in electrical systems for accurate current measurement and protection. A 'CT close' refers to a current transformer secondary circuit that is closed, meaning it is connected in a way that allows current to flow through the secondary winding. This ensures precise current measurement and protection in various electrical applications.








| Parameter | Value |
|---|---|
| Manufacturer | ESP |
| Part ID | 32 |
| Voltage Rating | 0-5V (secondary output) |
| Current Rating | 0-100A (primary input) |
| Frequency Range | 50-60Hz |
| Accuracy Class | 0.5 |
| Operating Temperature | -40°C to 85°C |
| Insulation Voltage | 3kV |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | S1 | Secondary winding terminal 1 |
| 2 | S2 | Secondary winding terminal 2 |
| 3 | GND | Ground |
| 4 | VCC | Power supply (3.3V or 5V) |
| 5 | OUT | Analog output voltage proportional to current |
// Example code to read current using ESP32 CT Close Circuit with Arduino UNO
const int analogPin = A0; // Analog pin connected to OUT pin of CT close circuit
float voltage = 0.0;
float current = 0.0;
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud rate
}
void loop() {
int sensorValue = analogRead(analogPin); // Read the analog value from the sensor
voltage = sensorValue * (5.0 / 1023.0); // Convert the analog value to voltage
current = (voltage - 2.5) * 20.0; // Convert voltage to current (assuming 0-5V maps to 0-100A)
Serial.print("Voltage: ");
Serial.print(voltage);
Serial.print(" V, Current: ");
Serial.print(current);
Serial.println(" A");
delay(1000); // Wait for 1 second before the next reading
}
No Output Voltage:
Inaccurate Measurements:
High Voltage on Secondary Winding:
By following this documentation, users can effectively utilize the ESP32 Current Transformer (CT) Close Circuit for accurate current measurement and protection in various electrical applications.