AC Voltage measurement using PIC16F877A microcontroller

In this tutorial, we will learn to measure AC voltage using a pic microcontroller with two methods. One is using a potential transformer and the second one is using an op-amp as a difference amplifier. That’s means, in the first method, we will use a voltage transformer to step down 220V AC and in the second method, we will use an operational amplifier as a difference amplifier to step down high AC voltage. But for both methods, we will use pic microcontroller ADC to take AC voltage samples. For this tutorial, we will use the PIC16F877A microcontroller. However, the logic used in this tutorial can be used with other microcontrollers such as 8051, AVR, Arduino, Raspberry Pi, Beaglebone, etc.

You have came across many online tutorials on various websites about voltage measurement using different microcontrollers. But all these tutorials are about measurement of low  DC voltage.In this project, you will learn how to measure high AC voltage using PIC16f877A micrcontroller.

In this tutorial, We will discuss ac voltage sensing with two method:

  1.  Using difference amplifier method
  2. Using potential transformer method

Alternating voltage measurement

To measure 220V AC, you need to step down this voltage. Because microcontrollers can’t measure voltage greater than 5V. If you give voltage more than 5V to the analog input of microcontroller, it will get damage permanently. To assure protection of microcontroller, you will need to step down 220 volt AC into AC  voltage whose peak value should be less than 5V. For example , 220V AV mean RMS voltage and its peak value is equal to 311 volt. similarly you have to step down high AC voltage of in such a way that its peak value should not be greater than 5 volt.

There are two methods to step down 220 alternating voltage into low alternating voltage which peak value should not be greater than 5 volt.

  • Potential Transformer ( All Electrical Engineering students must know about P.T and its use)
  • Difference amplifier  ( I will discuss difference amplifier method  in this project.)

Potential Transformer can also be used to step down 220 Alternation voltage.But why you want to spend more money? when you can do this with the help of cheap operational amplifiers and few resistors. Difference amplifier method is more economical than potential Transformer when you want to step down voltage less than 400 volt AC.

NOTE: Difference amplifier method is economical for voltage measurement less than 400 volt. Because above 400 volt, this method become expensive than potential Transformer. There are reasons behind it. I am not going to discuss reasons here.This method is suitable for final year students who want  to measure Alternating voltage and current.

Difference Amplifier circuit

Difference amplifier is used to amplify voltage from two voltage levels.In case of Alternating voltage we have two voltage level one is positive with respect to neutral and other is negative with respect to neutral. I will recommend you to Google about difference amplifier and its use.

you can adjust the gain of difference amplifier according to our requirement by selecting proper  values of resistors.In this project gain is equal to :

Gain=  R8/(R1+ R2+ R3)  ;

In Alternating voltage case second voltage level is zero. Because during positive cycle and negative cycle other side is considered zero or neutral. So output voltage will be

vout = gain * Vinput;

Difference amplifier to step down voltage

In Above picture, resistor R1, R2, R3 R4, and R5 have high values which do not allow high voltage to appear across op-amp. Because high input resistors are used that’s why micro ampere current will low and this way power loss will be in mili watts. According to difference amplifier gain formula our gain will be:

gain=   (22K)/( 1.2M + 1.2M + 2.2K) = 0.0091

NOTE:  you must make calculation according to peak value of sine wave. Because peak voltage is the maximum voltage input to micrcontroller analog pin.So with a .0091 gain, with respect to peak voltage of sine wave output voltage from op-amp is :

                                      Vout = .0091 * 311 = 2.8301 volt (peak output voltage)

As you see above figure we have connected other terminal of R7 to 5 volt instead of  ground as we do while using difference amplifier in many applications. R7 resistor is used to increase DC voltage level op-amp output. Sine wave have zero DC voltage level and  negative voltage cycle. Microcontroller can not read negative voltage.So we increase the DC level of sine wave by 5 volt.In this way negative voltage will not appear across  microntroller. Now output peak voltage from op-amp is 5 + 2.8301 = 7.8301 volt. But as I have mentioned , microcontrollers can not measure voltage greater than 5 volt.So as shown in above figure we have used voltage divider to divide voltage by 2.Hence output voltage is:

                                                            Vout = 7.8301/2 =  3.90155;

Capacitors C1, C2, and C3 are used to filter harmonics from input voltage and to provide protection to micrcontroller from harmonics.Now AN pin can be connected to microcontroller analog pin to measure voltage easily.

Video lecture on AC voltmeter design

To know about how to measure analog voltage using analog module of PIC16F877A microcontroller go through PIC microcontrollers tutorials..

PIC MICROCONTROLLERS TUTORIALS

COMPLETE CIRCUIT DIAGRAM 

To know about LCD interfacing with PIC micronctrollers, go through pic microcontrollers        tutorials

 PIC MICROCONTROLLERS TUTORIALS

LCD displaying voltage value..
LCD displaying voltage value..

Complete circuit diagram:

Alternating voltage measurement circuit diagram
Alternating voltage measurement circuit diagram

If you want to get complete code and circuit diagram comment on this  with your email address.

AC voltage measurement code

Code for this project is written using Mikro C.To download code for AC voltage measurement click on link below :  [sociallocker]

sbit LCD_RS at RB2_bit;
sbit LCD_EN at RB3_bit;
sbit LCD_D4 at RB4_bit;
sbit LCD_D5 at RB5_bit;
sbit LCD_D6 at RB6_bit;
sbit LCD_D7 at RB7_bit;
sbit LCD_RS_Direction at TRISB2_bit;
sbit LCD_EN_Direction at TRISB3_bit;
sbit LCD_D4_Direction at TRISB4_bit;
sbit LCD_D5_Direction at TRISB5_bit;
sbit LCD_D6_Direction at TRISB6_bit;
sbit LCD_D7_Direction at TRISB7_bit;
float v;
char txt[5];
char txt1[5];
void voltage_READ(void)
 {
 float max;
 int i;
 int t[40];
 ADCON0.ADON=1;
 for(i=0; i<=39; i++)
 {
 v= ADC_Read(0); //Digital value convert
 v =v*(10.0/1023.0);
 v=(v-5.0);
 t[i]=v*110.1909091;
 }

 ADCON0.ADON=0;
 max=t[0];
 for(i=0; i<=39; i++)
 {
 if(max<t[i])
 max=t[i];
 }
 max=max*.707106781;
 intToStr(max, txt);
 Lcd_out(1,9,txt);
 delay_ms(1000);
 }
 
void main()
{
 Lcd_Init(); // Initialize LCD
 ADCON0.ADCS1=1;
 ADCON0.ADCS1=0;
 ADCON0.ADON=0;
 
 while(1)
 {

 Lcd_out(1,1, "Voltage:");
 voltage_READ();
 }
}

Don’t forget to subscribe us to get info about next useful projects in your inbox. if you want to purchase simulation in 15$ US. Contact me at [email protected] After sending payment, send me email, I will send you code and simulation in your email. thanks

[button-brown url=”http://store.microcontrollerslab.com/product/ac-voltage-measurement-using-pic16f877a-microcontroller/” target=”_blank” position=”left”]Buy code and proteus simulation in 15$[/button-brown]

Second method to measure AC voltage

In that article I have discussed each and everything you need to know to make ac voltage measurement project. In that article, I have used operational amplifier as a difference amplifier to step down ac voltage level from 220 volt ac to less than 5 volt ac. But I have seen many people struggling with that method. So I have decided to write a article on how to measure ac voltage using potential transformer and pic microcontroller with digital lcd display.

How to measure ac voltage: 

Ac voltage can be measure with following methods:

  • AC voltage measurement using digital millimeter
  • AC voltage measurement using analog voltmeter
  • AC voltage measurement using microcontroller
  • AC voltage measurement using potential transformer and digital display (I will discuss this method in this tutorial)
  • AC voltage measurement using difference amplifier and pic microcontroller 

As I have already discussed in this project, I will be using potential transformer to step down 220volt ac voltage to less than 5 volt ac. I will discuss it later why we need to step down ac voltage to measure it with the help of pic microcontroller.

Main components of ac voltage measure project:

Followings are the main components of ac voltage measurement project. Brief descriptions of all components are also given below:

What is potential transformer (PT)

Potential transformer is a type of transformer which is used to step down ac voltage. It is used to measure ac voltage by stepping down AC voltage. For example in this project, potential transformer is used to step down 220volt ac voltage to 12 volt ac. Potential transformer secondary winding have less turn than primary winding’s. So according to below mentioned turns ratio formula, it step down ac voltage.

Ns/Np = Vs/Vp

What is bridge rectifier?

Bridge rectifier is electronics circuit used to convert ac voltage into pulsating dc voltage. In other words it converts, negative cycle of AC voltage into positive cycle. Now the question is why we need bridge rectifier in this project? Because microcontrollers can’t reads negative voltage.  Therefore we need to convert negative half cycle of AC voltage into positive cycle. Bridge rectifier is made using rectifier diodes connected in a form to form a bridge. 1N4007 rectifier diodes are used to make H Bridge.

Voltage divider circuit:

Voltage divider circuit as it name suggests is used to divide voltage. Two resistors are used to as voltage divider. Potential transformer step downs 220 volt AC in to 12 volt AC. After that bridge rectifier is used to convert 12 volt ac into pulsating dc.  But microcontroller cannot read voltage more than 5 volt. Therefore voltage divider circuit further divide the voltage in two parts and less than 5 volt appear across analog to digital converter pin of pic microcontroller. I will discuss later about analog to digital converter.

Liquid crystal display:

Liquid crystal display or LCD is used to used to display value of measured ac voltage. 16X2 LCD is used in this project.  LCD is interfaced with pic16f877a microcontroller. IF you don’t know how to interface LCD with PIC16F877A microcontroller, check following article:

LCD interfacing with pic16f877a microcontroller

PIC16F877A microcontroller:

PIC16F877A microcontroller is used in this project. PIC16F877A microcontroller is belongs to 16F family of pic microcontrollers. It have built in analog to digital converters module. Some of basic features of PIC16F877A microcontroller is given below:

For more information about pic16f877a microcontroller features and if you are new to microcontroller’s worlds, check following article.

Getting started with PIC16F877A microcontrollers

Circuit diagram of how to measure ac voltage using microcontroller

Circuit diagram of how to measure AC voltage project is given below. I have already explained all the components of this project above.

How to measure ac voltage using microcontroller
How to measure ac voltage using microcontroller

Input to circuit is 220 volt AC voltage. Potential transformer step downs 220 volt AC voltage in 12 volt AC. After that bridge rectifier converts step down AC into pulsating dc voltage. Voltage divider further divides the voltage into two parts. Voltage less than 5 volt appear across analog to digital converter pin of pic16f877a microcontroller. Microcontrollers are basically small micro computers which understand only digital values. Built in analog to digital converter module of pic16f877a microcontroller converts analog values of AC voltage into digital values. These digital values are used in processing of data with in microcontroller. Pieces of instructions written in the form of coding told microcontroller what to do. Microcontroller itself do not do anything. You tell him to do whatever you want him to perform by writing pieces of information called program.

Simulation result of how to measure ac voltage project:

Diagram below shows simlation results of ac voltage measurement project. LCD displays 220 volt AC which is measured with the help of microcontroller and necessary components connected with the microcontroller and potentioal transformer.

How to measure ac voltage using pic microcontroller
How to measure ac voltage using pic microcontroller

 List of components :

List of required componensts for how to measure ac voltage is given below:

Category,Reference,Value,Order Code
Capacitors,"C1",22pF,
Capacitors,"C2",22pF,
Resistor R1 = 30K , R2 = 10K, R3 = 10K;
Integrated Circuits,"U1",PIC16F877A,
Diodes,"D1",1N4007,
Diodes,"D2",1N4007,
Diodes,"D3",1N4007,
Diodes,"D4",1N4007,
Miscellaneous,"TR1",TRAN-2P2S PT,
Miscellaneous,"X1",CRYSTAL 8MHZ,

Program for how to measure AC voltage using PT

program given below is written using MIkro C compiler.

// LCD module connections
sbit LCD_RS at RB2_bit;
sbit LCD_EN at RB3_bit;
sbit LCD_D4 at RB4_bit;
sbit LCD_D5 at RB5_bit;
sbit LCD_D6 at RB6_bit;
sbit LCD_D7 at RB7_bit;

sbit LCD_RS_Direction at TRISB2_bit;
sbit LCD_EN_Direction at TRISB3_bit;
sbit LCD_D4_Direction at TRISB4_bit;
sbit LCD_D5_Direction at TRISB5_bit;
sbit LCD_D6_Direction at TRISB6_bit;
sbit LCD_D7_Direction at TRISB7_bit;
// End LCD module connections

float maxpoint = 0;
int i;
unsigned int temp=0;

char ch[5];

void main()
{

TRISA = 0XFF;// All input
TRISB0_bit = 1;//set as input
TRISB1_bit = 1;//set as input
ADC_Init();

// Initialize LCD configuration...
Lcd_Init();
Lcd_Cmd(_LCD_CLEAR); // Clear display
Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off

while(1)

{
Lcd_Out(1,1,"AC voltage");

for(i=0;i<500;i++)
{
if(temp = ADC_Read(0),temp>maxpoint)
{
maxpoint = temp;
}
}
maxpoint = ( maxpoint * 5 )/ (1023) ;
maxpoint = maxpoint * 4;
maxpoint = maxpoint + 1.4;
maxpoint = maxpoint * 18;
maxpoint = maxpoint * ( 1 / sqrt(2) );
intToStr(maxpoint, ch);
lcd_out(2,1, Ltrim(ch));
maxpoint = 0;
}// while
}// void mai

I have made necessary comments in code for your understanding.If yo still have any issue in understanding of code, let me know.If you have no issue after reading this article your comments are welcome. you can also check these PIC16F877A projects:

277 thoughts on “AC Voltage measurement using PIC16F877A microcontroller”

  1. hello , iam idreesmuhamed , in the fact , your project is very important because iam electric engineer
    , please send to me the code and iam be thankfull for you .

    Reply
  2. The information provided on your page here turns very useful for me and i thanks you for this.
    I have made the simulation but having a little problem with the code so if you send me the code then i am very grateful to you.
    I am an electrical engineering student in Delhi Technological University and the topic here on this page is similar to my minor topic so please help me and send the code as soon as possible.

    Reply
  3. hi! can you explain me how to find the formular “for” look of source code:

    v=v*(10.0/1023.0);
    v=(v-5);
    t[i]=v*110.1909091;

    thanks you so much!

    Reply
  4. Nice work! you have shown a easy way to interface and measure high voltage using microcontroller. Thank you. but I am having some doubts, after calculating current through resistors, it is 9.57×10^-5 so by calculating voltage drop across R1, so (9.57×10^-5) x(2.2M) is 219.34V it should be low isn’t it? please guide me.

    Reply
  5. Thank you for sharing with us! I have assembled this ckt on bread board, without interfacing it with PIC. So the output voltage should be 7V DC(without voltage dividing) isn’t it? but mine is getting 5V DC so what might be the problem? or its normal ?

    Reply
  6. Hi Bilal Malik

    I would like to ask is this circuit is also applicable to 110Vac. I was able to try your circuit in 220Vac and I was successful on it but when I try to 100Vac it shows different voltage readings. I appreciate if you reply on my inquiry.

    thanks
    frendy

    Reply
  7. Hi there please send me your code for this AC voltmeter and ammeter project. I am very much interested in this project .
    Thanks a million

    Reply
  8. I am very much interesting to do PIC mcu projects with mikroC compiler. Especially AC voltage measurement by PIC mcu.Kindly send me the complete circuit diagram and Source code for 16F 877A AC voltage measurement projects.

    Reply
  9. Sir,
    will you pls mail me code of pic16f877a for closed loop voltage regulation of a converter in MPLAB if possible
    Regards,
    Chitra

    Reply
  10. Hi Friends,
    Can you explain this step on the source code:

    v=v*(10.0/1023.0);
    v=(v-5);
    t[i]=v*110.1909091;

    please explain how to find 110.1909091 value
    Thank U

    Reply
  11. Thank u BILAL Malik friend ,

    How to change the source code to the measure 3phase voltage (0-600v )
    please tell friend……

    Reply
  12. Hi friend
    I am try to adjust the gain of difference amplifier to change R8 value change to 15KOHm
    gain =15K(1.2m+1.2m+2.2K)
    gain = .0062443

    source code
    v=v*(10.0/1023.0);
    v=(v-5);
    t[i]=v*160.1467

    input voltage 14V but display voltage 21V
    how to sl the err plz tell frd ……..

    Reply
  13. Dear Bilal,

    I’m having proplems with the circuit. When I plug in the mains , the fuse turns off.
    Have you any idea what the problem could be?

    Iro

    Reply
  14. sir
    we are using pic18 . how to provide input to pic18 from potential divider circuit. ? code is not clear please explain in detail. please reply to my email id.thank you……….

    Reply
    • this code is not for potential divider. you have to make little bit changes in code to use directly with voltage divider second method can be used

      Reply
  15. Hai,
    For the first method using difference amplifier, what is the wattage for resistor R1,R2,R3 and R4? Is it 10w,5w or 1/4w ?

    Reply
    • Thanks for the codes… I juts tried building the codes it’s having a lil problem .please kindly check the line code:

      ADC_Init();

      There is were I got stuck when trying to build my codes and running it..

      Please check and get back to me ..
      Thanks

      Reply
      • This code will work with Mikro C for PIC only and make sure to include adc library from the library manager

        Reply
  16. You could just use a voltage divider down to below 5V and use the PIC ADC at a 10Ksamples/s or some appropriate sample rate. This way you can do more than just get voltage……can calculate peak to peak, RMS, noise, etc…
    However, certain applications have regulatory requirements to isolate 220V, such as using a transformer (or optical)….for safety reasons….i.e. A voltage divider might not be enough.

    Reply
  17. I have a question.
    Why you not use bridge diode & divider voltage as beginning without potential transformer. We use another resistor values transforming 220V to less than 5V?

    Reply
  18. Hi
    while simulate , output always remain constant as 5 v
    even when i change ac source voltage o/p still 5 v
    or will it works by practical
    help

    Reply
  19. Thanks for an informative lesson. I have a few questions. First, many people talk about the dangers of this kind of circuit not being isolated. Is this safe as long as the circuit is correctly implemented? If people are worried about AC voltage being connected to the CPU by a stray wire, then clearly this could happen to any design, even an optoisolated one.

    Second, why the capacitor C3? What is that doing? It looks like just noise stabilization?

    Reply
  20. Hello,
    this is great contribution.
    I want to use ur idea in geophysics.
    After injecting a current from 220v ac modified sine wave with two electrode inserted in the earth, i will record the potential difference in another two electrodes that does not have any direct connection to the source electrodes.
    so my questions are
    1. can i use rectifier before/after the opamp to get positive voltage in micro-controller(i am using arduino uno).
    2. can i replace the opamp with 741 ic
    3. what do you suggest me to remove those noises(self potential of the earth) coming from the earth that does not have the same form from our modified sine wave. I saw some use synchronous rectifier tapping from the source as a reference signal.

    Reply
  21. anyone can explain the above mention code for voltage read?
    why we multiply the ADC_read(0) value with 10/1023 and after this take minus 5 from it?
    also tell me why we multiply it with 110.19 ?

    thank you

    Reply
  22. Hi, may I ask why is the input voltage for LM258 12v? Can I give it as 5V? Because If it is 12v, I have go put in an another DC source for this, which make it not really convinient compare to the project with transformers.

    Reply
  23. great job sir, i found your article here so intriguing and i am iterested. i will be very grateful if you send me the complete work with code for the AC voltmeter in my email @ [email protected]. thank you sir! i am Kingsley, a computer engineering student from Nigeria.

    Reply
  24. Difference amplifier method is economical for voltage measurement less than 400 volt. Because above 400 volt, this method become expensive than potential Transformer. There are reasons behind it.
    What are those reasons..?

    Reply
  25. hi bilal i have no experience in c language but there is something i’d like to explain me .
    i have a project of building an automatic voltage regulator in assembly language.

    your post on ac voltage measurment using difference amplifier surpases my mind .

    at the output of the op amp we should get an alternating voltage .so how can a pic read an altenative voltage ???
    what should be the value of the input voltage? that should be written in the assembly program for comparison ???
    what’s the value obtained after conversion in a 8bit pic ADC??? of 100v,140,180,200,220,240?

    Reply
  26. hi how can a pic measure with accuracy the Ac voltage that comes from the op amp?
    can you also explain it with some formulas??
    in addition to that may you explain also
    v =v*(10.0/1023.0); why 10????
    v=(v-5.0); how v-5.0?????
    t[i]=v*110.1909091;

    Reply
    • v =v*(10.0/1023.0); why 10???? because of the voltage divider -> v =2*v*(5/1023.0)
      v=(v-5.0); how v-5.0????? Remove offset
      t[i]=v*110.1909091; Inverse Differential gain

      Regards

      Reply
      • @José Miguel

        v =v*(10.0/1023.0); why 10???? because of the voltage divider -> v =2*v*(5/1023.0)
        v=(v-5.0); how v-5.0????? Remove offset
        t[i]=v*110.1909091; Inverse Differential gain

        That does not add up,
        v =v*(10.0/1023.0); why 10???? because of the voltage divider -> v
        no way the maximum output from the ac setup can only amount to 3.915V given that the voltage divider halfs the output of the 7.831,
        it doesn’t make sense why you would equate it to 10!!!!

        t[i]=v*110.1909091; Inverse Differential gain ??? How is it calculated or the values just landed here from no where?

        Reply
    • Late reply but i hope this will help someone someday.

      1. Why He used 10. Originally, the resolution should be 5000mV/1023 (5V/1023) but because the negative half cycle was previously ignored since PIC cannot measure negative voltages, to compensate for that, you multiply by 2. i.e from +5v to 0V to -5V for normal sinusoidal signal. Note the 5000mV is actually the 5V supply to PIC. It has been used because the ADC module is using the supply voltage to the PIC as its reference voltage (Vref).

      2. About the V-5 ==>> Recall the DC level of the Stepped down signal was raised by 5V to eliminate negative voltages to the PIC Pin. Since the negative part of the cycle has now been adequately compensated in V = V * (5.0*2/1023.0), it is necessary to subtracted the added DC level raising voltage which is 5V. Thus, V-5.

      3. On t[i] = V * 110.1909091; I believe he used the already stated formula
      Vout = gain * Vin
      Since we now want to measure Vin,
      Vi = V/gain
      which is same as
      Vi = V * (1/gain)

      1/gain = 1/0.0091 = 109.190909143.
      Thus,
      Vi = V * 109.190909143.
      Can’t tell why he used 110.1909091 instead.
      Note, t is a variable (placeholder for Vi) and it is logging 40 different Vi levels (i.e. from 0 to 39) with respect to i that will make for better measurement accuracy and precision…
      Hence,
      t[i] = V * 109.1909091

      Thank you!

      Reply
  27. Hi Bilal,

    I read this article long time back, but didn’t got chance to used it.
    Now for one of my project I decided to use above explained circuit.
    I noticed one strange behaviour of above circuit which I am not able to understand fully.

    Circuit gives exact calculated gain, when R1 is connected to neutral of grid & live wire to R4.
    But moment we inter change the input connection gain of circuit comes totally different then previous case. Simulation does not show any behaviour like this.
    did you observe anything like this ???

    Reply
  28. Is a difference amplifier the same thing as a differential amplifier or are you referring to a method of measurement with an op amp? This was unclear to me.

    Thanks,

    Jay

    Reply
  29. Hello, I have a query. In the difference amplifier, I am giving the Amplitude of 311V (for 220v) but the LCD is showing 220v (No Fault) and for for the amplitude of 340V (240V), the LCD is showing 240v (No Fault).
    Then I realized that the circuit trips (Shows fault) when the voltage reaches to 260V in the LCD.
    I want to change this part. Can you please point out that which part of this code is needed to change?
    Your project is really awesome, but if you help me a little, it will be very much appreciable.
    Thanks in advance 🙂

    Reply
  30. Hi Mr. Bilal Malik. actually im interested to the “Alternating voltage measurement circuit diagram(with complete code)”.Which is it can measure 240Vac and current flow. So how can i get the code and circuit? if need pay or anything. Please reply me on [email protected]. Thank You Mr Bilal Malik

    Reply
  31. Hello. Thank you very much for your helpfull ac measurement circuit.
    I built it in an pcb and make my own program. It work fine, but i am having a problem with the linearity.
    I adjust the voltage for 120V and it look fine, but when the voltage is low than 60V, the voltage measured is more or less 4 to 5V different. When the voltage is 180V, the measurement is more or less 10V Different.

    What could be the problem.?

    Reply
  32. And the divider voltage was not considered in the calculations….

    v= ADC_Read(0);
    v =v*(10.0/1023.0);
    …………
    v = v*2; -> divider voltage was not considered
    …………
    v=(v-5.0);
    t[i]=v*110.1909091;

    Reply
  33. Hi,
    why you are running for loop for only 39 times and where you are using t[40] value, it is confusing me,
    i am also not able to change the value of power supply to amplifier and to R11 resistor, it is by default Vcc, does that make any difference- dont know how to make 12v or 5v.

    How i can measure voltage being supplied by AC voltage source.

    Awaiting response

    Reply
  34. Hello dear,
    thank you for this teach, I create this circuit but I have 2.5 volt in op-amp output(after R9), so I measurement input voltage, after R1,R4 I have 98.5V AC, after R2,R5 I have ~0.3 VAC and after R3,R6 I have ~0 VAC, so when I remove input 220 volt Output not change!!!
    Can you help me for knowing where is my mistake???
    thanks a lot.

    Reply
    • Hello,
      I use LM358, and couldn’t give a normal output, so when I remove the Op-Amp. I can see 3.01 VAC after 2.2K resistors. but when op-amp is in circuit output voltage is 0!!!!

      Reply
  35. pic 16f877a controllers adc can measures dc pulsating voltage or not…… if not how can i convert into steady dc… (i.e my input 2.5vdc pulsating voltage am required same voltage in steady dc voltage)….pls help me….

    Reply
  36. Nice tutorial. I want to ask concerning the linearity of the circuit. Has anyone built it in real life? Is the linearity recommendable? I just ask because I tried it on proteus, and I didn’t get very impressive results, so I am curious if anyone has actually built it.
    Thanks.

    Reply
  37. please i need the complete code for the AC voltmeter so i can design the setup as you have already done. Thank you sir

    Reply
  38. I see that you have used Separate 5v source for incresing dc level and powering pic. What can you suggest if you want to achieve same just by using AC input . Could you Explain that

    Reply
  39. Firstly thank you sir for ur support.
    I did as u instructed but at output of my LCD it was giving me 388v please what is d solution sir.

    Reply
  40. Hi, I am looking for low cost ac voltage sensing circuit. would you pls email me the method using difference amplifier??

    Reply
  41. Good day sir, I am Okoye Franklin from Enugu Nigeria, I what to no if I can get this project from you, How to Read AC voltage with comparator, Am using PIC16f886 MikroC.

    Reply
    • Just use the code, and change the registers to match with the ic u are using. I did the project using pic16f886, and it works quite well. Nice tutorial. I learnt a lot.

      Reply
  42. Differential amplifier still needs a ground reference through a resistor or a voltage divider in your case if want to DC bias the output. Without this the output will get saturated due to supply limitation and voltage difference b.w the inputs. This will probably never give you a true representation of 50hz sine wave on the output.

    Reply
  43. i need to measure 220v ac using pic16f676 without comparator please send me the whole code and the schematic circuit
    thank you

    Reply
  44. hey! this code helped me very well so far. it will help more if you can tell me how you calculated the multiplication and addition factors(values)……..thanks

    Reply
  45. Will you be able to do a tutorial to measure wide range of AC input not just 220VAC. I would say from 85VAC to 264VAC. That will be helpful.

    Thank You

    Reply
  46. Hi… Thanks for your circuited but … It can be so useful if you calculate the accuracy of this circuit by considering tolerance of resistors… I do that and Its too bad.
    Assume : v in peak = 300v , tolerance = +%5 , u Controller ADC = 10 bits , v ref = 3.3v
    gain = 0.00915827
    v out real = 2.74788 => v out adc = 2.748 => v in (calculated by u controller) = 301 v

    Assume : v in peak = 300v , tolerance R8 = +%5 , , tolerance R1 , R2 and R3 = +%5 ,u Controller ADC = 10 bits , v ref = 3.3v
    gain = 0.0101223
    v out real = 3.03669 => v out adc = 3.036 => v in (calculated by u controller)= 333.62

    ——————————————————————————————————————–

    Reply
    • Well, it depends on how many samples you take and then average them out. Also, using a correction factor always serves the purpose for low costs designs like this.

      Reply
  47. Explain this code more to me:
    maxpoint = ( maxpoint * 5 )/ (1023) ;
    maxpoint = maxpoint * 4;
    maxpoint = maxpoint + 1.4;
    maxpoint = maxpoint * 18;
    maxpoint = maxpoint * ( 1 / sqrt(2) );
    Thank so much

    Reply
  48. Hello thanks for your code on ac measurement. i understand the code and circuit but i dont understand why the array has to be 40 for sample measurement . How dose 40 sample reading only covers the 20ms of the full cycle of the ac voltage .
    How will using a different array number affect the reading.
    I will appreciate your kind response.
    Thanks

    Reply
  49. Wow, wonderful blog it is! Thanks for sharing the technical details about AC High Voltage Tester that includes ac voltage measurement using micro controller. Keep doing this great work!

    Reply
  50. sir we have made this project using Arduino microcontroller but we have made for measurement up to 480 volts. we have also made hardware circuit but we have an issue related to scaling. We have measured values practically those values are true but Arduino does not gives right value just due to scaling issue. Can you help us with this….?

    Reply

Leave a Comment