Skip to content

Commit

Permalink
Edited 2.x and 4.x Example (Arduino-IRremote#1254)
Browse files Browse the repository at this point in the history
* Update README.md

Added Serial.begin(115200) to the old 2.x and new 4.x program

* Update README.md
  • Loading branch information
luiwagner authored Aug 3, 2024
1 parent 13ca5ce commit c2b95a3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ decode_results results;
void setup()
{
...
Serial.begin(115200); // Establish serial communication
irrecv.enableIRIn(); // Start the receiver
}

Expand All @@ -203,6 +204,7 @@ void loop() {
void setup()
{
...
Serial.begin(115200); // // Establish serial communication
IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK); // Start the receiver
}
Expand Down

0 comments on commit c2b95a3

Please sign in to comment.