Merge pull request #13 from meridani/master

16 to 15
master
marcoschwartz 6 years ago committed by GitHub
commit cd2552708e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      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()
{
}

Loading…
Cancel
Save