Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

Power detector using 8051 microcontroller

Status
Not open for further replies.
Ok. You are using an optocoupler to detect the mains presence. Am I right ? If yes, then you interface 50 Hz to MCU using optocoupler. You use INTx pin (external interrupt) to detect the presence of 50Hz signal. You should also use a timer interrupt. When ever a pulse is detected that comes from optocoupler then reload the timer registers. Say you have a timer of 100 ms. Also use a counter in timer ISR code. make sure whenever there is external interrupt you also clear this counter. So timer is reloaded every 20 ms and counter is cleared every 20 ms.

You should use something like this in Timer ISR

Code:
++counter;
if(counter == x) {
   //mains not present
   counter = 0;
}

where x represents the value needed to complete say 2 sec.

100 ms timer interrupt. 20 * 100 ms = 2 sec So, x = 20.
 
Status
Not open for further replies.

Latest threads

New Articles From Microcontroller Tips

Back
Top