0
0
Scherp geprijsde producten
Voor 15:00 uur besteld zelfde dag verzonden.*
Geleverd uit eigen voorraad vanuit ons magazijn in Nederland

Spannings sensor

Spannings sensor
Productomschrijving

Spannings sensor

Beschrijving : 

Deze module reduceerd de spanning 5 maal lager als de ingangsspanning.

De maximale ingangsspanning van de meeste Arduinos is 5 volt, dus kun je 5 V x 5 = 25 V 
The max Arduino analoge input voltage is 5 V, so the input voltage of this module should be not more than 5 V x 5 = 25 V ( voor 3.3 V systemen is dat dan 3.3 V x 5 = 16.5 V ). 

Omdat de Arduino een 10 bits AVR chip heeft is de gesimuleerde resolutie 0.00489 V (5 V / 1023),
dus het ingangs voltage zou meer moeten zijn als 0.00489 V x 5 = 0.02445 V.   


Specificaties :

1、Max ingangsspanning : DC 0-25 V

2、Range meetingang : DC 0.02445 V-25 V

3、Spannings resolutie : 0.00489 V


Aansluit voorbeeld :

 



Mogelijkheden:


 
Test Code : 

int analogInput = A1;
float vout = 0.0;
float vin = 0.0;
float R1 = 30000.0; //  
float R2 = 7500.0; // 
int value = 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) / 1024.0; // see text
   vin = vout / (R2/(R1+R2)); 
   
Serial.print("INPUT V= ");
Serial.println(vin,2);
delay(500);
}

Productspecificaties

Artikelnummer
F11
SKU
111566847

Recent bekeken

Spannings sensor
Spannings sensor
Op voorraad
€1,95 Incl. btw
Toevoegen
Wij slaan cookies op om onze website te verbeteren. Is dat akkoord? JaNeeMeer over cookies »