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

How to Use sensor tegangan: Examples, Pinouts, and Specs

Image of sensor tegangan
Cirkit Designer LogoDesign with sensor tegangan in Cirkit Designer

Introduction

A voltage sensor is a device that detects and measures the voltage level in a circuit, providing an output signal that can be used for monitoring or control purposes. These sensors are widely used in various applications, including power management systems, battery monitoring, and industrial automation. By converting voltage levels into readable signals, voltage sensors enable precise monitoring and control of electrical systems.

Explore Projects Built with sensor tegangan

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Arduino and ESP-8266 Based Electrical Parameter Monitoring System with LCD Display
Image of multi: A project utilizing sensor tegangan in a practical application
This circuit features an Arduino UNO interfaced with an ACS712 current sensor and a ZMPT101B voltage sensor for measuring electrical parameters, which are displayed on an LCD. The ESP-8266 Controller is connected to the Arduino for potential IoT capabilities, and a trimmer potentiometer is used to adjust the LCD contrast. Power regulation is managed by an LM2596 module connected to a 220V power source.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-Based Smart Energy Monitoring and Control System
Image of SMART SOCKET: A project utilizing sensor tegangan in a practical application
This circuit is designed to monitor AC voltage and current using ZMPT101B and ZMCT103C sensors, respectively, with an ESP32 microcontroller processing the sensor outputs. The XL4015 step-down module regulates the power supply to provide a stable voltage to the sensors, the ESP32, and an LCD I2C display. The ESP32 controls a 4-channel relay module for switching AC loads, and the system's operation can be interacted with via the LCD display and a push switch.
Cirkit Designer LogoOpen Project in Cirkit Designer
STM32 and ESP8266-Based Electric Grid Monitoring and Control System with I2C LCD Display
Image of electric grid monitoring: A project utilizing sensor tegangan in a practical application
This circuit monitors and controls an electric grid by measuring voltage and current using ZMPT101B and ACS712 sensors, displaying the readings on a 16x2 I2C LCD screen, and controlling a relay module to manage the load. The system is powered by a 3.3V battery, uses an STM32 microcontroller for processing, and includes an ESP8266 module for remote monitoring and control via WiFi.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO-Based Environmental Monitoring System with LCD Display
Image of digestor circuit diagram: A project utilizing sensor tegangan in a practical application
This circuit is a sensor monitoring system powered by a 220V AC supply, which is converted to 12V DC using an SMPS. An Arduino UNO microcontroller reads data from a DHT11 temperature and humidity sensor and an MQ-2 gas sensor, and displays the information on a 16x2 I2C LCD screen.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with sensor tegangan

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 multi: A project utilizing sensor tegangan in a practical application
Arduino and ESP-8266 Based Electrical Parameter Monitoring System with LCD Display
This circuit features an Arduino UNO interfaced with an ACS712 current sensor and a ZMPT101B voltage sensor for measuring electrical parameters, which are displayed on an LCD. The ESP-8266 Controller is connected to the Arduino for potential IoT capabilities, and a trimmer potentiometer is used to adjust the LCD contrast. Power regulation is managed by an LM2596 module connected to a 220V power source.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of SMART SOCKET: A project utilizing sensor tegangan in a practical application
ESP32-Based Smart Energy Monitoring and Control System
This circuit is designed to monitor AC voltage and current using ZMPT101B and ZMCT103C sensors, respectively, with an ESP32 microcontroller processing the sensor outputs. The XL4015 step-down module regulates the power supply to provide a stable voltage to the sensors, the ESP32, and an LCD I2C display. The ESP32 controls a 4-channel relay module for switching AC loads, and the system's operation can be interacted with via the LCD display and a push switch.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of electric grid monitoring: A project utilizing sensor tegangan in a practical application
STM32 and ESP8266-Based Electric Grid Monitoring and Control System with I2C LCD Display
This circuit monitors and controls an electric grid by measuring voltage and current using ZMPT101B and ACS712 sensors, displaying the readings on a 16x2 I2C LCD screen, and controlling a relay module to manage the load. The system is powered by a 3.3V battery, uses an STM32 microcontroller for processing, and includes an ESP8266 module for remote monitoring and control via WiFi.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of digestor circuit diagram: A project utilizing sensor tegangan in a practical application
Arduino UNO-Based Environmental Monitoring System with LCD Display
This circuit is a sensor monitoring system powered by a 220V AC supply, which is converted to 12V DC using an SMPS. An Arduino UNO microcontroller reads data from a DHT11 temperature and humidity sensor and an MQ-2 gas sensor, and displays the information on a 16x2 I2C LCD screen.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications

  • Battery voltage monitoring in renewable energy systems
  • Power supply regulation in electronic devices
  • Overvoltage and undervoltage protection in circuits
  • Industrial automation and control systems
  • Educational projects and prototyping with microcontrollers (e.g., Arduino)

Technical Specifications

Below are the general technical specifications for a typical voltage sensor module:

Parameter Specification
Input Voltage Range 0V to 25V (varies by model)
Output Voltage Range 0V to 5V (compatible with ADC inputs)
Measurement Accuracy ±1% (typical)
Operating Voltage 3.3V or 5V (depending on module)
Interface Type Analog
Dimensions ~30mm x 20mm x 10mm

Pin Configuration

The voltage sensor module typically has the following pin configuration:

Pin Name Description
VCC Power supply input (3.3V or 5V)
GND Ground connection
OUT Analog output signal proportional to voltage
VIN+ Positive voltage input to be measured
VIN- Negative voltage input (ground reference)

Usage Instructions

Connecting the Voltage Sensor

  1. Power the Sensor: Connect the VCC pin to a 3.3V or 5V power source, depending on the module's requirements. Connect the GND pin to the ground of your circuit.
  2. Voltage Input: Connect the voltage source you want to measure to the VIN+ and VIN- pins. Ensure the input voltage does not exceed the sensor's maximum input range.
  3. Output Signal: Connect the OUT pin to an analog input pin on your microcontroller (e.g., Arduino) to read the voltage signal.

Important Considerations

  • Voltage Divider Circuit: Most voltage sensors use a built-in voltage divider circuit to scale down the input voltage. Ensure the sensor's input range matches your application.
  • Calibration: For accurate measurements, calibrate the sensor by comparing its output with a known reference voltage.
  • Safety: Avoid exceeding the sensor's maximum input voltage to prevent damage to the module or connected devices.

Example: Using a Voltage Sensor with Arduino UNO

Below is an example of how to use a voltage sensor with an Arduino UNO to measure and display voltage:

// Define the analog pin connected to the voltage sensor's OUT pin
const int sensorPin = A0;

// Define the voltage divider ratio (e.g., 5:1 for a typical sensor)
const float voltageDividerRatio = 5.0;

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

void loop() {
  // Read the analog value from the sensor
  int sensorValue = analogRead(sensorPin);

  // Convert the analog value to a voltage (0-5V range for Arduino ADC)
  float voltage = sensorValue * (5.0 / 1023.0);

  // Scale the voltage using the voltage divider ratio
  float actualVoltage = voltage * voltageDividerRatio;

  // Print the measured voltage to the Serial Monitor
  Serial.print("Measured Voltage: ");
  Serial.print(actualVoltage);
  Serial.println(" V");

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

Notes:

  • Replace voltageDividerRatio with the actual ratio of your sensor module.
  • Ensure the Arduino's ADC reference voltage matches the sensor's output range.

Troubleshooting and FAQs

Common Issues

  1. Incorrect Voltage Readings

    • Cause: Calibration not performed or incorrect voltage divider ratio.
    • Solution: Verify the voltage divider ratio and calibrate the sensor using a multimeter.
  2. No Output Signal

    • Cause: Improper wiring or insufficient power supply.
    • Solution: Double-check all connections and ensure the sensor is powered correctly.
  3. Fluctuating Readings

    • Cause: Electrical noise or unstable input voltage.
    • Solution: Add a capacitor across the input terminals to filter noise.

FAQs

  1. Can I measure AC voltage with this sensor?

    • No, this sensor is designed for DC voltage measurement only. For AC voltage, use a dedicated AC voltage sensor.
  2. What happens if the input voltage exceeds the sensor's range?

    • Exceeding the maximum input voltage can damage the sensor. Use a higher-rated sensor or an external voltage divider for higher voltages.
  3. Can I use this sensor with a 3.3V microcontroller?

    • Yes, as long as the sensor supports a 3.3V power supply and the output voltage does not exceed the microcontroller's ADC input range.

By following this documentation, you can effectively integrate a voltage sensor into your projects for accurate voltage monitoring and control.