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'
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:
Is it "12=C" or "12C "?