• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Homemade Circuit Projects

Get free circuit help 24/7

  • +1000 Circuits
  • Hobby Circuits
  • Basic Circuits
  • Learn Arduino
  • Logic IC Pinouts
  • Disclaimer
You are here: Home / Meters and Testers / Arduino based DC Voltmeter Circuit – Construction Details and Testing

Arduino based DC Voltmeter Circuit – Construction Details and Testing

Last Updated on January 1, 2019 by Swagatam 6 Comments

In this post, we are going to construct a DC voltmeter using Arduino where the readings are displayed in 16x2 LCD.

 
 
The proposed voltmeter design can read up to 30V with tolerance of +/- 0.5 volt. We are going to see how this setup functions and explore other possibilities we can accomplish other than measuring voltage.

This project is fairly simple, even beginners can accomplish with ease, but care must be taken while prototyping the circuit as we are going to apply external voltage, any misconnection to Arduino can lead to fatal damage to your board.

Let the warning be a side, let’s explore how it functions.

Here, we are using analogue to digital conversion process. Voltage from any source is analogue function; the readings displayed on 16x2 LCD is a digital function.

The challenge is converting those analogue functions to digital function. Fortunately, Arduino has functionality to read analogue functions and convert them to discrete function.

Arduino microcontroller equipped with 10-bit analogue to digital converter (ADC). This means Arduino can read 2^10=1024 discrete voltage levels.

In other words, the voltage applied to analogue pin of Arduino is sampled 1024 discrete voltage levels with respect to a reference voltage; the sampled value gets displayed in the LCD. This is the principle behind this voltmeter or almost any digital voltmeter.

However, the applied external voltage is not directly measured by Arduino. The voltage is step down with help of voltage dividers and some math is done in the program in order to get actual voltage reading.

How it Works

The circuit consists of two resistors, one LCD display and an Arduino which is brain of the digital voltmeter. The two resistor acts as voltage divider, the node of the divider is connected to analogue pin # A0 of the Arduino, which reads the input voltage. Ground connection is established between Arduino and external voltage source.

The minimum voltage which can measure by this voltmeter is 0.1V, this threshold is set in the program, so that it reads 0.00 volt after disconnecting the voltage source and does not display readings due to static charge around the measuring probe.

Author’s prototype: 

Arduino based DC Voltmeter Test Results

Don’t reverse the polarity while measuring the voltage, it won’t harm the circuit but, it does not read any voltage and displays 0.00 V, until you correct the polarity. Adjust the contrast of LCD display to optimum level by rotating the potentiometer.

Make sure you don’t apply any voltage source which could spike higher than 30V; it may damage your Arduino board. Technically you can bump up the maximum measuring voltage of this circuit by changing resistor values and modifying the program, but for the illustrated setup 30V is limit.

For accurate reading, choose fixed resistors with minimum tolerance value, resistors play an important role in calibrating the voltage reading.

Circuit diagram:

 

Arduino based DC Voltmeter Circuit

The other possibility of this voltmeter is that we can modify the program to automate some tasks.

For instance, detect full battery voltage and disconnect the battery from its charger or disconnect battery if voltage goes below preset voltage level and so on, these task can be accomplished even without LCD display. However this is subject of another article.

Program:

//--------Program developed by R.Girish---------//
#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,5,4,3,2);
int analogInput = 0;
float vout = 0.0;
float vin = 0.0;
float R1 = 100000;
float R2 = 10000;
int value = 0;
void setup()
{
pinMode(analogInput, INPUT);
lcd.begin(16, 2);
lcd.print("DC VOLTMETER");
Serial.begin(9600);
}
void loop()
{
value = analogRead(analogInput);
vout = (value * 5.0) / 1024;
vin = vout / (R2/(R1+R2));
if (vin<0.10) {
vin=0.0;
}
lcd.setCursor(0, 1);
lcd.print("INPUT V= ");
lcd.print(vin);
delay(500);
}
//--------Program developed by R.Girish---------//

Please check the readings with a good voltmeter/multimeter.

SHARING IS CARING!



Previous: Bluetooth Car Ignition Lock Circuit – Keyless Car Protection
Next: Magnetic Door Security Alarm Circuit for Alerting if Door was Opened

About Swagatam

I am an electronic engineer (dipIETE ), hobbyist, inventor, schematic/PCB designer, manufacturer. I am also the founder of the website: https://www.homemade-circuits.com/, where I love sharing my innovative circuit ideas and tutorials.
If you have any circuit related query, you may interact through comments, I'll be most happy to help!

You'll also like:

  • 1.  How to Measure Gain (β) of a BJT
  • 2.  1.5 watt Transmitter Circuit
  • 3.  Arduino Frequency Meter Using 16×2 Display
  • 4.  Test Static Electricity with this Electrometer Circuit
  • 5.  0 to 99 Digital Pulse Counter Circuit
  • 6.  Universal BJT, JFET, MOSFET Tester Circuit

Please Subscribe (Only if you are Genuinely Interested in our Newsletters)


 

Reader Interactions

Comments

    Your Comments are too Valuable! But please see that they are related to the above article, and are not off-topic! Cancel reply

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

  1. Search Related Posts for Commenting

  2. reparatou says

    hello! is there any way to build a current indicator with LEDs like vu meter , somthing with OP-amps , and indicat the current with LEDs , like 0.1A, 0.2A,,, 0.5A, 1A, 1.5A , 2A , 2.5 ……..10A

    Reply
    • Swagatam says

      That’s easily possible using the IC LM3915. Just add a current sensing resistor across its pin5 and ground, as the potential difference across the resistor rises, it will be reflected through the 10 LEDs connected across the ICs output pins.

      Reply
      • reparatou says

        thank you 🙂

        Reply
  3. nikhiltricks says

    hi swagatam,
    i am working on a industrial product of battery voltage data logger.
    I have designed some circuits for that. but i have doubts in that circuit so could you please help me regrading this project.

    if you could just send me your mail id then i can tell you the concept and work done by me.
    my mail id is nikhil.kakade123@gmail.com

    Reply
    • Swagatam says

      Hi Nikhil, I can surely look into it and try my best to help you out, but I would be willing to do that only if I am allowed to share it in this website later on, I hope you won't mind it.

      My email is hitman2008

      @ live.in

      Reply
  4. nikhiltricks says

    hi swagatham,

    Reply



Primary Sidebar

Electronic Projects Categories

  • 3-Phase Power (15)
  • 324 IC Circuits (19)
  • 4017 IC Circuits (51)
  • 4060 IC Circuits (25)
  • 555 IC Circuits (94)
  • 741 IC Circuits (18)
  • Amplifiers (49)
  • Arduino Engineering Projects (82)
  • Audio Projects (85)
  • Battery Chargers (76)
  • Car and Motorcycle (88)
  • Datasheets (45)
  • Decorative Lighting (Diwali, Christmas) (32)
  • DIY LED Projects (82)
  • Electronic Components (97)
  • Electronic Devices and Circuit Theory (35)
  • Electronics Tutorial (99)
  • Fish Aquarium (5)
  • Free Energy (34)
  • Games (2)
  • GSM Projects (9)
  • Health Related (17)
  • Heater Controllers (24)
  • Home Electrical Circuits (98)
  • Incubator Related (6)
  • Industrial Electronics (27)
  • Infrared (IR) (39)
  • Inverter Circuits (94)
  • Laser Projects (10)
  • LM317/LM338 (21)
  • LM3915 IC (24)
  • Meters and Testers (55)
  • Mini Projects (153)
  • Motor Controller (65)
  • MPPT (7)
  • Oscillator Circuits (15)
  • PIR (Passive Infrared) (8)
  • Power Electronics (33)
  • Power Supply Circuits (65)
  • Radio Circuits (9)
  • Remote Control (46)
  • Security and Alarm (56)
  • Sensors and Detectors (116)
  • SG3525 IC (5)
  • Simple Circuits (72)
  • SMPS (29)
  • Solar Controllers (60)
  • Timer and Delay Relay (51)
  • TL494 IC (5)
  • Transformerless Power Supply (8)
  • Transmitter Circuits (39)
  • Ultrasonic Projects (12)
  • Water Level Controller (46)

Follow Homemade Circuits

Facebook
Twitter
YouTube
Instagram
My Facebook-Page
Quora

Feeds

Post RSS
Comment RSS

Circuit Calculators

  • AWG to Millimeter Converter
  • Battery Back up Time Calculator
  • Capacitance Reactance Calculator
  • IC 555 Astable Calculator
  • IC 555 Monostable Calculator
  • Inductance Calculator
  • LC Resonance Calculator
  • LM317, LM338, LM396 Calculator
  • Ohm’s Law Calculator
  • Phase Angle Phase Shift Calculator
  • Power Factor (PF) Calculator
  • Reactance Calculator
  • Small Signal Transistor(BJT) and Diode Quick Datasheet
  • Transistor Astable Calculator
  • Transistor base Resistor Calculator
  • Voltage Divider Calculator
  • Wire Current Calculator
  • Zener Diode Calculator
  • Privacy Policy
  • About Us
  • Contact
  • Disclaimer
  • Videos – Circuit Test Results

© 2021 · Swagatam Innovations