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
{{ message }}
This repository was archived by the owner on Dec 20, 2018. It is now read-only.
When executing the script, it would be expected to find the following output on the LCD:
New first line
New second line
However, the LCD reads:
First line
New second linef
As stated above, the first line is not updated. Additionally, the second line contains fragments from the sentence that was supposed to end up in the first line. The sentence was written to the end of the second line and then again overwritten by the updated second line: Second line => Second lineNew f => New second linef
A workaround is to call clear() before subsequent uses of message, which however results in a small period of time between the two messages, in which the display is empty (and therefore looks like its flickering).