Skip to content

Commit

Permalink
Fixed PROGMEM definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico committed Dec 1, 2014
1 parent fe3e1cf commit 0e15493
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void setup()
{
// start serial debug output
Serial.begin(115200);
Serial.println(L("Startup"));
Serial.println(F("Startup"));

// attach the new PinChangeInterrupt function above
attachPinChangeInterrupt();
Expand All @@ -98,11 +98,11 @@ void loop() {
// print as much as you want in this function
// see source to terminate what number is for each protocol
Serial.println();
Serial.print(L("Protocol:"));
Serial.print(F("Protocol:"));
Serial.println(IRLgetProtocol());
Serial.print(L("Address:"));
Serial.print(F("Address:"));
Serial.println(IRLgetAddress(), HEX);
Serial.print(L("Command:"));
Serial.print(F("Command:"));
Serial.println(IRLgetCommand(), HEX);

// resume reading to get new values
Expand Down

0 comments on commit 0e15493

Please sign in to comment.