We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 26d2571 + fb1a35f commit 1ba8535Copy full SHA for 1ba8535
firmware/OpenLCD/OpenLCD.ino
@@ -262,8 +262,8 @@ void updateDisplay()
262
modeRecordCustomChar = true; //Change to this special mode
263
}
264
265
- //Display custom characters
266
- else if (incoming >= 35 && incoming <= 43)
+ //Display custom characters, 8 characters allowed, 35 to 42 inclusive
+ else if (incoming >= 35 && incoming <= 42)
267
{
268
SerLCD.write(byte(incoming - 35)); //You write location zero to display customer char 0
269
@@ -438,4 +438,4 @@ void displayFrameBuffer(void)
438
439
//Return the cursor to its original position
440
SerLCD.setCursor(characterCount % settingLCDwidth, characterCount / settingLCDwidth);
441
-}
+}
0 commit comments