Arduino voltammeter: Unterschied zwischen den Versionen

Aus Happylab
Zur Navigation springen Zur Suche springen
Zeile 38: Zeile 38:
 
log permanent OFF
 
log permanent OFF
 
==References==
 
==References==
My circuit is an adaption of the Renatos blog  
+
My circuit is an adaption of Renatos blog  
 
http://rexpirando.blogspot.com/2011/03/arduino-volt-ammeter-part-1-breadboard.html
 
http://rexpirando.blogspot.com/2011/03/arduino-volt-ammeter-part-1-breadboard.html
 
who himself refers to page
 
who himself refers to page
 
http://electronics-diy.com/70v_pic_voltmeter_amperemeter.php, where you can
 
http://electronics-diy.com/70v_pic_voltmeter_amperemeter.php, where you can
 
find the kernel circuit doing the measurements.
 
find the kernel circuit doing the measurements.

Version vom 5. Februar 2012, 19:57 Uhr

For the German version go to Arduino_VoltAmmeter

General

ammeter on breadboard
ammeter circuitry

I describe a volt-amperemeter using Arduino microcontroller. The measurements (voltage and current in one) can be made permanently (for instance every second).

In picture ammeter on breadboard you see at the input a battery block and at the output a LED with its safety resistor. These two components can be replaced by any two power source and current consumer respectively, as long as they are in a certain range. In following attachment you find the Arduino code, the DS1307 library and also the Fritzing scheme for closer reference.

Filezip.gif ArduinoAmmeter.zip (112KB)
Version from 05.02.2012

Logging

timer DS1307

Time and Date information is delivered by DS1307 break out board. You can also omit this part (including cables) without affecting the measurement of voltage and current. Time and Date is then simply shown to be zero in the log entries.

BEISPIEL (aus SERIAL MONITOR)

log permanent on

V=5.86;mA=10.27;R_v=523.30;mW=60.14;time=19:2:58;day=5;monat=2

V=5.86;mA=10.27;R_v=523.30;mW=60.14;time=19:2:59;day=5;monat=2

V=5.86;mA=10.27;R_v=523.30;mW=60.14;time=19:3:0;day=5;monat=2

V=5.86;mA=10.27;R_v=523.30;mW=60.14;time=19:3:1;day=5;monat=2

log permanent OFF

References

My circuit is an adaption of Renatos blog http://rexpirando.blogspot.com/2011/03/arduino-volt-ammeter-part-1-breadboard.html who himself refers to page http://electronics-diy.com/70v_pic_voltmeter_amperemeter.php, where you can find the kernel circuit doing the measurements.