From 4e845ba55333377f0d765d2f2dbaf4594d74204e Mon Sep 17 00:00:00 2001 From: Meridani Date: Thu, 2 Jun 2016 22:54:07 +0200 Subject: [PATCH] 16 to 15 --- examples/CustomChars/CustomChars.pde | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/CustomChars/CustomChars.pde b/examples/CustomChars/CustomChars.pde index beea6d6..e341000 100644 --- a/examples/CustomChars/CustomChars.pde +++ b/examples/CustomChars/CustomChars.pde @@ -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); @@ -67,4 +67,4 @@ void loop() { } - +