Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/ReceiveDemo/ReceiveDemo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ void loop() {
*/
if (IrReceiver.decodedIRData.protocol == UNKNOWN
#if defined(DEBUG_BUTTON_PIN)
|| digitalRead(DEBUG_BUTTON_PIN) == LOW)
|| digitalRead(DEBUG_BUTTON_PIN) == LOW
#endif
{
) {
// We have debug enabled or an unknown protocol, print extended info
if (IrReceiver.decodedIRData.protocol == UNKNOWN) {
Serial.println(F("Received noise or an unknown (or not yet enabled) protocol"));
Expand Down