Skip to content

Commit

Permalink
16 to 15
Browse files Browse the repository at this point in the history
  • Loading branch information
meridani committed Jun 2, 2016
1 parent 4bb48bd commit 4e845ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/CustomChars/CustomChars.pde
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void displayKeyCodes(void) {
while (1) {
lcd.clear();
lcd.print("Codes 0x"); lcd.print(i, HEX);
lcd.print("-0x"); lcd.print(i+16, HEX);
lcd.print("-0x"); lcd.print(i+15, HEX);
lcd.setCursor(0, 1);
for (int j=0; j<16; j++) {
lcd.printByte(i+j);
Expand All @@ -67,4 +67,4 @@ void loop()
{

}


0 comments on commit 4e845ba

Please sign in to comment.