Simple DC Voltage Sensor, VDC 25V
SKU: 20-011₱120.00
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.
- Description
- Reviews (0)
Description
This DC voltage sensor can detect voltage from 0 to 25V. Sensor is based on resistance points pressure principle, and it can make the input voltage of red terminal reduce 5 times of original voltage.
The max Arduino analog input voltage is 5 V, so the input voltage of this module should be not more than 5 V x 5 = 25 V ( if for 3.3 V system, the input voltage should be not more than 3.3 V x 5 = 16.5 V ).
Because the Arduino AVR chip have 10 bit AD, so this module simulation resolution is 0.00489 V (5 V / 1023), and the input voltage of this module should be more than 0.00489 V x 5 = 0.02445 V.
- Characteristics
- 0-25V / 0.00489V / 5V/3.3V
- Technical Instruction
- int analogInput = A1;
float vout = 0.0;
float vin = 0.0;
int value = 0;
float R1 = 30000.0;
float R2 = 7500.0;void setup(){
pinMode(analogInput, INPUT);
Serial.begin(9600);
Serial.print(“DC VOLTMETER”);
}void loop(){
// read the value at analog input
value = analogRead(analogInput);
vout = (value * 5.0) / 1023.0; // see text
vin = vout / (R2/(R1+R2));Serial.print(“INPUT V= “);
Serial.println(vin,2);
delay(500);
}
Arduino sketch int analogInput = A1;
float vout = 0.0;
float vin = 0.0;
int value = 0;
float R1 = 30000.0;
float R2 = 7500.0;
void setup(){
pinMode(analogInput, INPUT);
Serial.begin(9600);
Serial.print(“DC VOLTMETER”);
}
void loop(){
// read the value at analog input
value = analogRead(analogInput);
vout = (value * 5.0) / 1023.0; // see text
vin = vout / (R2/(R1+R2));
Serial.print(“INPUT V= “);
Serial.println(vin,2);
delay(500);
}
Only logged in customers who have purchased this product may leave a review.
Related Products


Hall Effect Sensor with LM393 Comparator, Motor Speed Test
SKU: 20-029
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.


Heart Rate Pulse Sensor (Pulse sensor)
SKU: 20-019
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.


Ultrasonic Distance Sensor
SKU: 20-026
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.


PIR Motion Sensor (standard)
SKU: 20-010
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.


Xadow Basic Sensors Module
SKU: 21-001
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.


Optical Fingerprint Reader Sensor (R307)
SKU: 20-017
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.


MQ3 Alcohol Detector Gas Sensor
SKU: 20-020
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.


Current Sensor ACS712 (5A)
SKU: 20-003
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.


Current Sensor ACS712 (20A)
SKU: 20-004
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.


Vibration Shock Sensor(normally closed)
SKU: 20-009
LOCAL PICKUP @ OUR SHOP! Within Davao City.
P 190 FLAT-RATE DELIVERY! For orders less than 2kg, anywhere in the Philippines.
FREE DELIVERY! For orders more than P 3,000.
Reviews
There are no reviews yet.