Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use sct 013: Examples, Pinouts, and Specs

Image of sct 013
Cirkit Designer LogoDesign with sct 013 in Cirkit Designer

Introduction

The SCT-013 is a non-invasive current transformer (CT) sensor designed for measuring alternating current (AC). Manufactured by Arduino, this sensor allows for the measurement of current flowing through a conductor without the need for direct electrical contact. This makes it an ideal component for energy monitoring systems, where safety and ease of installation are paramount.

Explore Projects Built with sct 013

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
NFC-Enabled Access Control System with Time Logging
Image of doorlock: A project utilizing sct 013 in a practical application
This circuit is designed for access control with time tracking capabilities. It features an NFC/RFID reader for authentication, an RTC module (DS3231) for real-time clock functionality, and an OLED display for user interaction. A 12V relay controls a magnetic lock, which is activated upon successful NFC/RFID authentication, and a button switch is likely used for manual operation or input. The T8_S3 microcontroller serves as the central processing unit, interfacing with the NFC/RFID reader, RTC, OLED, and relay to manage the access control logic.
Cirkit Designer LogoOpen Project in Cirkit Designer
STM32F103C8T6 and ESP8266-Based Real-Time Crop Health Monitoring System with Wi-Fi Connectivity
Image of crop: A project utilizing sct 013 in a practical application
This circuit is a real-time crop health monitoring system that uses an STM32F103C8T6 microcontroller to read data from an NPK soil sensor, a soil moisture sensor, and a humidity and temperature sensor. The collected data is then transmitted wirelessly via an ESP8266 module to a dashboard or mobile app for farmers to monitor crop health.
Cirkit Designer LogoOpen Project in Cirkit Designer
NFC-Enabled Access Control System with Real-Time Clock and OLED Display
Image of doorlock: A project utilizing sct 013 in a practical application
This circuit is designed as an access control system with time-tracking capabilities. It uses an NFC/RFID reader for authentication, a real-time clock for time-stamping events, and an OLED display for user interface, all controlled by a T8_S3 microcontroller. A relay module actuates a magnetic lock, and a button switch provides additional user input, with a switching power supply delivering the necessary voltages.
Cirkit Designer LogoOpen Project in Cirkit Designer
PID Temperature Control System with Thermocouple and SSR
Image of IR: A project utilizing sct 013 in a practical application
This circuit is a temperature control system that uses a thermocouple to measure temperature and a PID controller to regulate it. The PID controller drives a solid-state relay (SSR) to control an external load, with power supplied through an AC inlet socket.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with sct 013

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of doorlock: A project utilizing sct 013 in a practical application
NFC-Enabled Access Control System with Time Logging
This circuit is designed for access control with time tracking capabilities. It features an NFC/RFID reader for authentication, an RTC module (DS3231) for real-time clock functionality, and an OLED display for user interaction. A 12V relay controls a magnetic lock, which is activated upon successful NFC/RFID authentication, and a button switch is likely used for manual operation or input. The T8_S3 microcontroller serves as the central processing unit, interfacing with the NFC/RFID reader, RTC, OLED, and relay to manage the access control logic.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of crop: A project utilizing sct 013 in a practical application
STM32F103C8T6 and ESP8266-Based Real-Time Crop Health Monitoring System with Wi-Fi Connectivity
This circuit is a real-time crop health monitoring system that uses an STM32F103C8T6 microcontroller to read data from an NPK soil sensor, a soil moisture sensor, and a humidity and temperature sensor. The collected data is then transmitted wirelessly via an ESP8266 module to a dashboard or mobile app for farmers to monitor crop health.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of doorlock: A project utilizing sct 013 in a practical application
NFC-Enabled Access Control System with Real-Time Clock and OLED Display
This circuit is designed as an access control system with time-tracking capabilities. It uses an NFC/RFID reader for authentication, a real-time clock for time-stamping events, and an OLED display for user interface, all controlled by a T8_S3 microcontroller. A relay module actuates a magnetic lock, and a button switch provides additional user input, with a switching power supply delivering the necessary voltages.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of IR: A project utilizing sct 013 in a practical application
PID Temperature Control System with Thermocouple and SSR
This circuit is a temperature control system that uses a thermocouple to measure temperature and a PID controller to regulate it. The PID controller drives a solid-state relay (SSR) to control an external load, with power supplied through an AC inlet socket.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Energy Monitoring Systems: Used to measure the current consumption of electrical appliances and systems.
  • Smart Home Automation: Integrated into smart home systems to monitor and manage energy usage.
  • Industrial Automation: Employed in industrial settings to monitor machinery and equipment for maintenance and efficiency.
  • Renewable Energy Systems: Used in solar and wind energy systems to monitor the output and efficiency of the installations.

Technical Specifications

Key Technical Details

Parameter Value
Manufacturer Arduino
Part ID UNO
Model SCT-013
Measurement Range 0-100A AC
Output Signal 0-1V AC
Accuracy ±1%
Operating Temperature -25°C to 70°C
Cable Length 1 meter
Core Material Ferrite
Housing Material ABS Plastic

Pin Configuration and Descriptions

Pin Number Pin Name Description
1 VCC Power supply (typically 5V from Arduino)
2 GND Ground
3 Signal Analog output signal proportional to measured AC

Usage Instructions

How to Use the SCT-013 in a Circuit

  1. Connect the SCT-013 to the Conductor:

    • Open the clamp of the SCT-013 and place it around the conductor whose current you wish to measure. Ensure the clamp is securely closed.
  2. Connect to Arduino UNO:

    • Connect the VCC pin of the SCT-013 to the 5V pin on the Arduino UNO.
    • Connect the GND pin of the SCT-013 to the GND pin on the Arduino UNO.
    • Connect the Signal pin of the SCT-013 to an analog input pin (e.g., A0) on the Arduino UNO.
  3. Load the Code:

    • Upload the following code to your Arduino UNO to read the current values from the SCT-013.
// SCT-013 Current Sensor Example Code
// This code reads the analog signal from the SCT-013 sensor and converts it
// to a current value.

const int sensorPin = A0; // Analog input pin for SCT-013
float calibrationFactor = 100.0; // Calibration factor for SCT-013

void setup() {
  Serial.begin(9600); // Initialize serial communication
}

void loop() {
  int sensorValue = analogRead(sensorPin); // Read the analog input
  float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
  float current = voltage * calibrationFactor; // Convert to current

  Serial.print("Current: ");
  Serial.print(current);
  Serial.println(" A");

  delay(1000); // Wait for 1 second before next reading
}

Important Considerations and Best Practices

  • Calibration: The calibration factor may need to be adjusted based on the specific SCT-013 model and the range of current being measured. Refer to the datasheet for precise calibration instructions.
  • Safety: Ensure the SCT-013 is securely clamped around the conductor and that the conductor is insulated. Avoid placing the sensor around live wires without proper insulation.
  • Noise Reduction: To reduce noise in the signal, consider using a low-pass filter or averaging multiple readings in your code.

Troubleshooting and FAQs

Common Issues and Solutions

  1. No Signal Output:

    • Solution: Ensure the SCT-013 is properly clamped around the conductor and that the connections to the Arduino are secure.
  2. Inaccurate Readings:

    • Solution: Check the calibration factor in the code. Adjust it based on the specific model and range of current being measured.
  3. Fluctuating Readings:

    • Solution: Implement a low-pass filter in the code or average multiple readings to reduce noise.

FAQs

Q: Can the SCT-013 measure DC current? A: No, the SCT-013 is designed to measure AC current only.

Q: What is the maximum current the SCT-013 can measure? A: The SCT-013 can measure up to 100A AC.

Q: How do I calibrate the SCT-013? A: Calibration involves adjusting the calibration factor in the code based on known current values. Refer to the datasheet for detailed calibration instructions.

Q: Can I use the SCT-013 with other microcontrollers? A: Yes, the SCT-013 can be used with other microcontrollers that have analog input pins, such as the ESP8266, ESP32, and others.

By following this documentation, users can effectively integrate the SCT-013 non-invasive current transformer sensor into their projects, ensuring accurate and reliable current measurements.