-
Notifications
You must be signed in to change notification settings - Fork 28
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
ILI9341_HAL #1
Comments
The library is super! |
Thanks! I will do continue upgrading this repository. |
It works fine but if you use a dynamic font (for example, a voltmeter, no refresh) |
Try In _64_Segment_7_Num, there is no point(".") |
Try this font generator http://oleddisplay.squix.ch/#/home |
thanks Static text, excellent. Dynamic does not work. LCD_Font(5, 100, "01.23", _64_Segment_7_Num, 1,WHITE); |
Sorry, but I don't understand, what you mean "dynamic text". If you want just overwrite old text to new, you must save in variable old value and print this in background colour before printing updated text. Example here https://github.com/anothermist/STATION_SSD1963_F103C8T6/tree/main/00_STATION |
You can send me code to gmail (anothermist@...) or telegram @anothermist |
There is no secret.
//------------------------------------------------------------------------------------------ |
In this code you don’t have any command to clear old text before writing new. // BLACK – is background color, ORANGE – is text color. Printing float example with overwrite old text float temperatureLast, temperature;
|
I found this code, but I can't figure out how to use it in my code. |
char signalUs[15]; |
BackColor RED |
In your code you can just override old text with background colour print Connected: print Disconnected: OR create array and use sprintf (a lot examples here https://github.com/anothermist/STATION_SSD1963_F103C8T6/blob/main/00_STATION/Src/main.c) |
20210406_100752.mp4Flicker |
lol, can you add condition in code "if (printed now != current value) PRINT; else DONOTHING :) |
I'm already confused |
|
|
if (NEED_UPDATE) {
} // else do nothing, don't print every 100ms one text if it's printed! |
while (1)
|
I have a display without a touchscreen, what should I change to make the display work?
thanks
The text was updated successfully, but these errors were encountered: