Product images are for informational purposes only and may vary slightly depending on the batch and supplier. Product specifications and prices may be subject to change without notice. We do our best to provide accurate and complete product specifications, but they may not be completely accurate. If you encounter any such situation, please let us know.
The product is intended for specialists and requires qualified and authorized personnel. The product does not include assembly/use instructions . Putting the product into operation by unqualified persons leads to the loss of the warranty according to the Terms and Conditions on the site.
The specified technical parameters (current, power, etc.) represent maximum allowable values under ideal operating conditions. For safe use and optimal lifespan, it is recommended to operate the product continuously at no more than 50% of the specified maximum values.
DC Voltage Sensor 0-25V, 3.3-5V
Module for measuring DC voltage between 0 and 25V, ideal for projects with Arduino and other development boards. It operates on 3.3-5V power supply, offers good resolution of 0.00489V for stable readings, simply connects via the S pin to the analog input, has compact dimensions of 25 x 13 mm and can display live voltage together with an I2C LCD.
Shipping by Thursday 27 August
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
We ship from our stock within 24H
You earn points with every order, worth 5%.
The DC voltage sensor is a compact and versatile module, designed to be easily integrated into Arduino projects and other compatible development platforms. The module allows measuring continuous voltages in the range of 0-25VDC, offering a resolution of 0.00489V and a minimum detectable voltage of 0.02445V, making it suitable both for battery monitoring applications and for real-time measurement systems.
It is powered directly from the development board, accepting voltages between 3.3 and 5VDC, eliminating the need for an additional external power source. Due to its small size of 25 x 13 mm, the module integrates easily into projects with limited space.
A popular use case is the combination with an LCD screen with I2C interface, which allows displaying the measured voltage value in real time directly on the display, without complex additional components.
Specifications:
Compatibility: Arduino, 3.3V and 5V development platforms
Power supply voltage: 3.3 - 5VDC
Measured voltage: 0 - 25VDC
Resolution: 0.00489V
Minimum detected voltage: 0.02445V
Dimensions: 25 x 13 mm
Pinout:
| Pin | Function |
|---|---|
| + | Power supply 3.3 - 5VDC |
| - | GND (ground) |
| S | Analog signal output (Arduino analog pin) |
Usage:
Connect the "+" pin of the module to the 3.3V or 5V pin of the Arduino board.
Connect the "-" pin of the module to the GND of the Arduino board.
Connect the "S" pin to an analog pin of the Arduino board (e.g., A0).
Connect the voltage to be measured to the input terminals of the module, respecting the polarity.
Upload the test code to the board and open the Serial Monitor to view the read values.
Optionally, connect an LCD module with an I2C interface to display the voltage directly on the screen in real time.
Produs destinat utilizarii in proiecte electronice, automatizari, prototipare, educatie si cercetare.
Produsul trebuie utilizat numai conform specificatiilor tehnice mentionate in descriere si/sau in documentatia produsului.
Avertismente generale de siguranta:
Nu utilizati produsul la tensiuni, curenti sau temperaturi peste valorile specificate.
Montajul si conectarea trebuie realizate de persoane cu cunostinte tehnice minime in domeniul electric/electronic.
Evitati scurtcircuitele, inversarea polaritatii si conectarea gresita a alimentarii.
Nu lasati produsul alimentat nesupravegheat in timpul testelor.
Produsul nu este jucarie si nu este destinat copiilor.
Pentru modulele electronice, se recomanda utilizarea in carcase, panouri sau montaje protejate, dupa caz.
Identificare produs:
Denumirea produsului, codul/SKU-ul si caracteristicile tehnice sunt mentionate in pagina produsului si/sau pe eticheta ambalajului.
Producator / Importator / Distribuitor:
Sigmanortec S.R.L.
Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania
E-mail: [email protected]
Website: www.sigmanortec.ro
Persoana responsabila in UE:
Sigmanortec S.R.L.
Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania
E-mail: [email protected]
Documentatie si siguranta:
Pentru informatii suplimentare, fise tehnice, declaratii de conformitate sau instructiuni, ne puteti contacta la [email protected].
// Voltage Sensor Test - Arduino
// Reads voltage from sensor on pin A0 and prints to Serial Monitor
const int analogPin = A0;
const float referenceVoltage = 5.0; // Set to 3.3 if using 3.3V board
const float voltageDivider = 5.0; // Sensor scales 0-25V down to 0-5V (ratio 5:1)
void setup() {
Serial.begin(9600);
Serial.println("Voltage Sensor Ready");
}
void loop() {
int rawValue = analogRead(analogPin);
float voltage = (rawValue * referenceVoltage / 1023.0) * voltageDivider;
Serial.print("Voltage: ");
Serial.print(voltage, 2);
Serial.println(" V");
delay(500);
}