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.
1 parent 1ba8535 commit faea8b5Copy full SHA for faea8b5
firmware/OpenLCD/OpenLCD.ino
@@ -267,7 +267,14 @@ void updateDisplay()
267
{
268
SerLCD.write(byte(incoming - 35)); //You write location zero to display customer char 0
269
}
270
+ //If we get a second special setting character, then write it to the display
271
+ //This allows us to print a pipe by escaping it as a double
272
+ else if (incoming == SPECIAL_SETTING) {
273
+ SerLCD.write(incoming);
274
275
+ currentFrame[characterCount++] = incoming; //Record this character to the display buffer
276
+ if (characterCount == settingLCDwidth * settingLCDlines) characterCount = 0; //Wrap condition
277
+ }
278
modeSetting = false;
279
280
else if (modeTWI == true)
0 commit comments