You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you update the Wiki with what happens to the cursor after you issue one of the Digit Control special commands 0x7B - 0x7E? For example, what is the result of:
Serial.write(0x76); // Clear display command, resets cursor
Serial.write('1'); // will display '1'
Serial.write('2'); // will display '2'
Serial.write(0x7D); // Control Digit 3
Serial.write(0b01001000); // binary for equal sign '='
Serial.write('C'); // will display 'C'