Arduino Digital Voltmeter 0V to 30V

Here is a useful circuit for Arduino lovers and experimenters. It is a simple digital voltmeter, which can safely measure input dc voltages in 0 to 30V range. The Arduino board can be powered from a standard 9V battery pack, as usual.

As you may well know, Arduino’s analog inputs can be used to measure DC voltage between 0 and 5V (when using the standard 5V analog reference voltage) and this range can be increased by using two resistors to create a voltage divider. The voltage divider decreases the voltage being measured to within the range of the Arduino analog inputs. Code in the Arduino sketch is then used to compute the actual voltage being measured.

Arduino Digital Voltmeter 0V to 30VAs you may well know, Arduino’s analog inputs can be used to measure DC voltage between 0 and 5V (when using the standard 5V analog reference voltage) and this range can be increased by using two resistors to create a voltage divider. The voltage divider decreases the voltage being measured to within the range of the Arduino analog inputs. Code in the Arduino sketch is then used to compute the actual voltage being measured

Notes

  • If the display reading didn’t match when comparing with your lab DVM, use a precision DMM to find the actual resistance of R1 and R2, and replace R1=100000.0 and R2=10000.0 in the code with that values. Next check the 5V supply with the lab DVM at GND and 5V pins on the Arduino board. It might give you less (for instance 4.95V), replace the value into the code vout = (value * 5.0) / 1024.0 (ie replace the 5.0 value to the actual V reading, in this case 4.95V). Further,always try to use precision 1% tolerance resistors for R1 and R2.
  • The resistor values (R1&R2) in the circuit diagram provide some over-voltage protection then measuring low voltages. Keep it in mind that any input voltage higher than about 55V could fry the Arduino. No other protection (for voltage spikes, reverse voltages or higher voltages) is incorporated in this circuit!

Arduino Digital Voltmeter Sketch

  1. /*
  2. DC Voltmeter
  3. An Arduino DVM based on voltage divider concept
  4. T.K.Hareendran
  5. */
  6. #include <LiquidCrystal.h>
  7. LiquidCrystal lcd(7, 8, 9, 10, 11, 12);
  8. int analogInput = 0;
  9. float vout = 0.0;
  10. float vin = 0.0;

Arduino Digital Voltmeter 0V to 30V Schematicfloat R1 = 100000.0; // resistance of R1 (100K) -see text!

  1. float R2 = 10000.0; // resistance of R2 (10K) – see text!
  2. int value = 0;
  3. void setup(){
  4. pinMode(analogInput, INPUT);
  5. lcd.begin(16, 2);
  6. lcd.print(“DC VOLTMETER”);
  7. }
  8. void loop(){
  9. // read the value at analog input
  10. value = analogRead(analogInput);
  11. vout = (value * 5.0) / 1024.0; // see text
  12. vin = vout / (R2/(R1+R2));
  13. if (vin<0.09) {
  14. vin=0.0;//statement to quash undesired reading !
  15. }
  16. lcd.setCursor(0, 1);
  17. lcd.print(“INPUT V= “);
  18. lcd.print(vin);
  19. delay(500);
  20. }

Schematic of the Arduino DVM Circuit

Parts

  • Arduino Uno Board
  • 100K Resistor
  • 10K Resistor
  • 100R Resistor
  • 10K Preset Pot
  • 16×2 Parallel LCD ( Hitachi HD44780 driver compatible)

Source: Arduino Digital Voltmeter 0V to 30V


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top