Merge pull request #13 from meridani/master

16 to 15
This commit is contained in:
marcoschwartz 2018-02-11 15:46:19 +01:00 committed by GitHub
commit cd2552708e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()
{
}