diff --git a/esphome/epaperframe.yaml b/esphome/epaperframe.yaml index 2fbd45b..8b0e293 100644 --- a/esphome/epaperframe.yaml +++ b/esphome/epaperframe.yaml @@ -289,6 +289,7 @@ image: - file: "epaperframe/C1024_logo_flat_bw.png" id: c1024_logo type: binary + resize: 77x40 spi: clk_pin: 23 @@ -331,6 +332,9 @@ display: */ it.filled_rectangle(86, 21, 297, 3); + /* C1024 logo */ + it.image(10 , 37, id(c1024_logo)); + it.print(10, 115, id(mdi_small), TextAlign::BASELINE_LEFT, "󰊚"); // air pressure icon it.print(375, 75, id(mdi_small), TextAlign::BASELINE_CENTER, "󰔏"); // thermometer icon it.print(375, 115, id(mdi_small), TextAlign::BASELINE_CENTER, "󰖎"); // water percent icon diff --git a/esphome/epaperframe/C1024_logo_flat_bw.png b/esphome/epaperframe/C1024_logo_flat_bw.png new file mode 100644 index 0000000..2d6462c Binary files /dev/null and b/esphome/epaperframe/C1024_logo_flat_bw.png differ