diff --git a/src/settings-custom.h b/src/settings-custom.h index 0b00c3e..5b367b6 100644 --- a/src/settings-custom.h +++ b/src/settings-custom.h @@ -100,6 +100,8 @@ #define IR_DEBOUNCE 200 // Interval in ms to wait at least for next signal (not used for actions volume up/down) // Actions available. Use your own remote control and have a look at the console for "Command=0x??". E.g. "Protocol=NEC Address=0x17F Command=0x68 Repeat gap=39750us" + // Make sure to define a hex-code not more than once as this will lead to a compile-error + // https://forum.espuino.de/t/neues-feature-fernsteuerung-per-infrarot-fernbedienung/265 #define RC_PLAY 0x68 // command for play #define RC_PAUSE 0x67 // command for pause #define RC_NEXT 0x6b // command for next track of playlist diff --git a/src/settings-espa1s.h b/src/settings-espa1s.h index c91930a..1463a9e 100644 --- a/src/settings-espa1s.h +++ b/src/settings-espa1s.h @@ -106,6 +106,8 @@ #define IR_DEBOUNCE 200 // Interval in ms to wait at least for next signal (not used for actions volume up/down) // Actions available. Use your own remote control and have a look at the console for "Command=0x??". E.g. "Protocol=NEC Address=0x17F Command=0x68 Repeat gap=39750us" + // Make sure to define a hex-code not more than once as this will lead to a compile-error + // https://forum.espuino.de/t/neues-feature-fernsteuerung-per-infrarot-fernbedienung/265 #define RC_PLAY 0x68 // command for play #define RC_PAUSE 0x67 // command for pause #define RC_NEXT 0x6b // command for next track of playlist diff --git a/src/settings-lolin32.h b/src/settings-lolin32.h index 57c3b59..4baf11d 100644 --- a/src/settings-lolin32.h +++ b/src/settings-lolin32.h @@ -4,6 +4,7 @@ /* This is a develboard-specific config-file for *Wemos Lolin32*. Specific doesn't mean it's only working with this board. Lolin32 is the predecessor of Lolin D32. PCB: https://github.com/biologist79/ESPuino/tree/master/PCBs/Wemos%20Lolin32 + PCB: https://forum.espuino.de/t/lolin32-mit-sd-sd-mmc-und-pn5180-als-rfid-leser/77 Infos: https://arduino-projekte.info/wemos-lolin32/ Caveats: None Status: @@ -104,6 +105,8 @@ #define IR_DEBOUNCE 200 // Interval in ms to wait at least for next signal (not used for actions volume up/down) // Actions available. Use your own remote control and have a look at the console for "Command=0x??". E.g. "Protocol=NEC Address=0x17F Command=0x68 Repeat gap=39750us" + // Make sure to define a hex-code not more than once as this will lead to a compile-error + // https://forum.espuino.de/t/neues-feature-fernsteuerung-per-infrarot-fernbedienung/265 #define RC_PLAY 0x68 // command for play #define RC_PAUSE 0x67 // command for pause #define RC_NEXT 0x6b // command for next track of playlist diff --git a/src/settings-lolin_d32.h b/src/settings-lolin_d32.h index 934fa3f..f964926 100644 --- a/src/settings-lolin_d32.h +++ b/src/settings-lolin_d32.h @@ -106,6 +106,8 @@ #define IR_DEBOUNCE 200 // Interval in ms to wait at least for next signal (not used for actions volume up/down) // Actions available. Use your own remote control and have a look at the console for "Command=0x??". E.g. "Protocol=NEC Address=0x17F Command=0x68 Repeat gap=39750us" + // Make sure to define a hex-code not more than once as this will lead to a compile-error + // https://forum.espuino.de/t/neues-feature-fernsteuerung-per-infrarot-fernbedienung/265 #define RC_PLAY 0x68 // command for play #define RC_PAUSE 0x67 // command for pause #define RC_NEXT 0x6b // command for next track of playlist diff --git a/src/settings-lolin_d32_pro.h b/src/settings-lolin_d32_pro.h index 9dbc082..8b94eab 100644 --- a/src/settings-lolin_d32_pro.h +++ b/src/settings-lolin_d32_pro.h @@ -102,6 +102,8 @@ #define IR_DEBOUNCE 200 // Interval in ms to wait at least for next signal (not used for actions volume up/down) // Actions available. Use your own remote control and have a look at the console for "Command=0x??". E.g. "Protocol=NEC Address=0x17F Command=0x68 Repeat gap=39750us" + // Make sure to define a hex-code not more than once as this will lead to a compile-error + // https://forum.espuino.de/t/neues-feature-fernsteuerung-per-infrarot-fernbedienung/265 #define RC_PLAY 0x68 // command for play #define RC_PAUSE 0x67 // command for pause #define RC_NEXT 0x6b // command for next track of playlist diff --git a/src/settings-ttgo_t8.h b/src/settings-ttgo_t8.h index 3c26adf..e57a9ef 100644 --- a/src/settings-ttgo_t8.h +++ b/src/settings-ttgo_t8.h @@ -102,6 +102,8 @@ #define IR_DEBOUNCE 200 // Interval in ms to wait at least for next signal (not used for actions volume up/down) // Actions available. Use your own remote control and have a look at the console for "Command=0x??". E.g. "Protocol=NEC Address=0x17F Command=0x68 Repeat gap=39750us" + // Make sure to define a hex-code not more than once as this will lead to a compile-error + // https://forum.espuino.de/t/neues-feature-fernsteuerung-per-infrarot-fernbedienung/265 #define RC_PLAY 0x68 // command for play #define RC_PAUSE 0x67 // command for pause #define RC_NEXT 0x6b // command for next track of playlist