We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I very much like this project and the UI / display design is just nice.
Pls. see the photo: After the dot in TEMP there is no value. Just empty. On the photo "16.".
And it would be great to have the battery-level on the display. Maybe instead of BRIGHT.
The text was updated successfully, but these errors were encountered:
Here is the updated code that limits the temperature to one decimal place / actually displays it. In the loop function, change this line:
tft.println(tmp);
into:
tft.println(tmp.substring(0, tmp.indexOf('.') + 2));
Sorry, something went wrong.
No branches or pull requests
I very much like this project and the UI / display design is just nice.
Pls. see the photo:
After the dot in TEMP there is no value. Just empty. On the photo "16.".
And it would be great to have the battery-level on the display. Maybe instead of BRIGHT.
The text was updated successfully, but these errors were encountered: