From bdb344752fca469e5bcfa44a4772db09706fece6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sat, 4 Jan 2020 23:30:07 +0100 Subject: [PATCH] fixes in the demo screen --- main/liquid/scene_root.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/liquid/scene_root.c b/main/liquid/scene_root.c index cf7b520..1551aa9 100644 --- a/main/liquid/scene_root.c +++ b/main/liquid/scene_root.c @@ -66,12 +66,12 @@ static void Root_paint(struct Scene *scene) LCD_setStrEx(header, 0, 3, 1, 3); - LCD_setRect(0, 12, 83, 33, 1, 1); + LCD_setRect(0, 12, 83, 31, 1, 1); char buf[10]; // sprintf(buf, "%3d", priv->pos); // LCD_setStr(buf, 2, 15, 0); sprintf(buf, "🌑%.0fΒ°C", analog_read()); - LCD_setStrEx(buf, 2, 15, 0, 2); + LCD_setStrEx(buf, 2, 14, 0, 2); LCD_setStr("Γ—β†‘β†“β†β†’β°βŒ›β˜ΈβŽπŸŒ‘Β°πŸ”™β–Άβ—€", 2, 33, 1); LCD_updateDisplay();