-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to clear display? #25
Comments
I need turn ON only colon - as status. And another question, how to select (I have two displays) which colon turn ON?
Two colons are turned ON :-) |
Hey, sorry. It has been almost a year since you posted your question. I wanted to run and test the issue myself but i never got to doing so. Is the problem still an issue? If not then try this: You see the library caches the last display value so it wouldn't need to physically send it to the display device every time. It is also the trick used to handle animations. #include <TM1637.h>
TM1637 tm(2, 3);
void setup()
{
tm.begin();
}
void loop()
{
// Display Integers:
tm.display(1234);
delay(1000);
tm.clearScreen();
delay(1000);
} does exactly what you are expecting. If there are no other questions, make sure to close the ticket. Thanks. |
Hi, after restart cpu display always show last digits.
My setup:
Above set's display to 00.
Above switch off display's, but when I turned ON again - on displays I have last number's :-(
What I can do to clear registry (buffer) in TM1637 using this library?
I want to have my display without any digits after start program.
Regards!
The text was updated successfully, but these errors were encountered: