Temperature indicators displaying

This commit is contained in:
Clément Grennerat
2025-09-15 22:02:46 +02:00
parent 88c00aacbd
commit 0fa53919e0
5 changed files with 231 additions and 26 deletions
+7
View File
@@ -123,6 +123,13 @@ void LCD_DrawHollowRoundRect(
uint16_t fill_color,
uint8_t do_fill);
// Build icons with https://notisrac.github.io/FileToCArray/
void LCD_Draw_Icon(const uint8_t *icon, uint16_t x, uint16_t y, uint16_t w, uint16_t h, uint16_t fg_color, uint16_t bg_color);
// Three colors icon, 8bits/pixel RRRGGGBB, RRR > 0x800 => FG, GGG > 0x800 => ALT, BB > 0x80 => BG
// Build icons with https://notisrac.github.io/FileToCArray/
void LCD_Draw_Icon_3(const uint8_t *icon, uint16_t x, uint16_t y, uint16_t w, uint16_t h, uint16_t fg_color, uint16_t alt_color, uint16_t bg_color);
#endif
/*******************PARTIE ISSUE DE LA LIB ILI9193_GFX.h***************************/
+19 -19
View File
File diff suppressed because one or more lines are too long