EveryCircuit
Powering up...
Circuit
Public
Private
Unlisted
Save

30V max volt meter for arduino

@giaco_33
8 years ago
https://everycircuit.com/circuit/5328474784137216
If you change volt meter with analog pin of arduino, and in the program write (for example): pot=A0; float value; void setup() { pinMode(pot, INPUT); } void loop() { value=map(analogRead(pot), 0,1023,0.0,30.0); }
Comments
Post