Edit esp-reterminal-e1001.yaml

This commit is contained in:
ESPHome Device Builder
2026-07-30 00:01:56 +12:00
parent 7aa03b072f
commit d5f8cadcc5
+5 -5
View File
@@ -797,15 +797,15 @@ display:
const Color background = inverse ? COLOR_ON : COLOR_OFF; const Color background = inverse ? COLOR_ON : COLOR_OFF;
// Main job icon, centred near the top of the tile. // 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. // 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. // Two-line job title and one large status line.
it.printf( it.printf(
x + (w / 2), x + (w / 2),
y + 83, y + 72,
id(font_job_title), id(font_job_title),
foreground, foreground,
TextAlign::CENTER, TextAlign::CENTER,
@@ -815,7 +815,7 @@ display:
it.printf( it.printf(
x + (w / 2), x + (w / 2),
y + 114, y + 100,
id(font_job_title), id(font_job_title),
foreground, foreground,
TextAlign::CENTER, TextAlign::CENTER,
@@ -825,7 +825,7 @@ display:
it.printf( it.printf(
x + (w / 2), x + (w / 2),
y + 160, y + 150,
id(font_job_status), id(font_job_status),
foreground, foreground,
TextAlign::CENTER, TextAlign::CENTER,