2

I am using a kind of electric lighter in my circuit in order to turn the fire on. enter image description here

And also i have used some sensors that alert in danger by sending a signal to the MCU (ATmega 32) interrupt. The lighter works with 220 V AC in its input so I used a relay to switch it on and off. Also I used emitter common transistor to make the relay controllable from MCU. Right before it I have used an optocoupler to separate the power supply. But when the lighter starts working, the interrupt program begin and this is my problem.

I have used many methods for example i placed small capacitors on Interrupt's pin, used sound insulation cover around MCU, covering the lighter, covering lighter wires, using ferrite bead (on the output of the power supply of MCU), using big capacitors. They helped me to reduce this noise But not enough to solve my problem. What should I do? Maybe the lighter is too powerful!
lighter conncetions

2 Answers2

0

I would try to filter the signals befor U2:A. If you filter it after U2:A such as in the circuit the noise will already have influenced the TTL signal and it can't be differentiated any more if the signal got generated thru noise or the MQ2 / MQ5 modules.

elFreak
  • 3
  • 3
0

I checked the signal at the MCU output pin which drives the relay by the oscilloscope. I found that it is not an electrical issue that influences the MCU's interrupts. In my program, I have used an external interrupt (to detect the rising edge of a different signal), and as soon as my ignitor starts to work the interrupt started automatically and sometimes the LCD stopped working and showed weird characters on its screen.

Then I decided to remove those interrupts from my programs and I tried to detect the rising edge simply by checking the input pins at specific times. I tried to use the interrupts as low as possible and I disabled them while working with the ignition system. In this way, I could solve my problem.