Hi, thank you for your great work on this project
// defining PINs set for ESP32 WROOM module
byte sck = 18; // GPIO 18
byte miso = 19; // GPIO 19
byte mosi = 23; // GPIO 23
byte ss = 5; // GPIO 5
int gdo0 = 2; // GPIO 2
int gdo2 = 4; // GPIO 4
I see that GDO0 is assigned to GPIO2, which is connected to the onboard LED on ESP32 DevKit V1 boards. When I press a button on my remote, the LED lights up — which is actually helpful as a visual indicator.
However, I’m wondering: does the fact that an LED is physically connected to GDO0 (GPIO2) interfere in any way with accurate signal capture or timing? In other words, could the onboard LED’s presence on this pin potentially affect the reliability of decoding or receiving RF data?
Thanks in advance for any clarification!