diff --git a/SampleSrc/IRRecv.ino b/SampleSrc/IRRecv.ino index f0bebff..5abc648 100644 --- a/SampleSrc/IRRecv.ino +++ b/SampleSrc/IRRecv.ino @@ -40,9 +40,9 @@ // Note: GPIO 16 won't work on the ESP8266 as it does not have interrupts. // Note: GPIO 14 won't work on the ESP32-C3 as it causes the board to reboot. #ifdef ARDUINO_ESP32C3_DEV -const uint16_t kRecvPin = 10; // 14 on a ESP32-C3 causes a boot loop. +const uint16_t kRecvPin = 36; // 14 on a ESP32-C3 causes a boot loop. #else // ARDUINO_ESP32C3_DEV -const uint16_t kRecvPin = 14; +const uint16_t kRecvPin = 36; #endif // ARDUINO_ESP32C3_DEV // The Serial connection baud rate.