All Questions
1 question
1
vote
0
answers
127
views
I try to use ESP8266-12F UART pins RX(D9) and TX(D10), TX works fine but RX interrupt doesn't work
volatile boolean interrupt_occurred = false;
#define LED_pin D1
void ICACHE_RAM_ATTR handleInterrupt() {
digitalWrite(LED_pin, HIGH); // Interrupt occurred, so turn On LED
...