diff --git a/esphome/esp-reterminal-e1001.yaml b/esphome/esp-reterminal-e1001.yaml index 1715bdb..fc22f2f 100644 --- a/esphome/esp-reterminal-e1001.yaml +++ b/esphome/esp-reterminal-e1001.yaml @@ -797,15 +797,15 @@ display: const Color background = inverse ? COLOR_ON : COLOR_OFF; // Main job icon, centred near the top of the tile. - draw_job_icon(icon_type, x + ((w - 50) / 2), y + 8, foreground, background); + draw_job_icon(icon_type, x + ((w - 50) / 2), y + 6, foreground, background); // Small state icon in the upper-right corner. - draw_state_icon(state, x + w - 42, y + 12, foreground, background); + draw_state_icon(state, x + w - 42, y + 10, foreground, background); // Two-line job title and one large status line. it.printf( x + (w / 2), - y + 83, + y + 72, id(font_job_title), foreground, TextAlign::CENTER, @@ -815,7 +815,7 @@ display: it.printf( x + (w / 2), - y + 114, + y + 100, id(font_job_title), foreground, TextAlign::CENTER, @@ -825,7 +825,7 @@ display: it.printf( x + (w / 2), - y + 160, + y + 150, id(font_job_status), foreground, TextAlign::CENTER,