Search found 1 match

by JEREMIARG
Mon Mar 27, 2023 5:13 pm
Forum: ESP32 Arduino
Topic: Triac, zero cross, AC dimmer via interrupts
Replies: 2
Views: 3968

Re: Triac, zero cross, AC dimmer via interrupts

In my case I built my zero crossing detector, it happened to me that there were rising edges that were not detected or that the interrupt was executed during the falling edge. It worked for me to make a debounce routine in the interrupt routine so that this code is not executed twice in a row. im ju...