From 1658a91e68dabd6a165bf1a4ccffd6365dfe2059 Mon Sep 17 00:00:00 2001 From: Martijn Date: Fri, 25 Oct 2024 18:16:41 +0200 Subject: [PATCH] removed my environment specific sensor... --- Examples/basic_example.yaml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Examples/basic_example.yaml b/Examples/basic_example.yaml index cea2da0..a844afc 100644 --- a/Examples/basic_example.yaml +++ b/Examples/basic_example.yaml @@ -115,10 +115,6 @@ sensor: name: "Temperature" address: 0x4A update_interval: 10s - - platform: homeassistant - id: outside_temperature - entity_id: sensor.gw1100a_outdoor_temperature - internal: true light: - platform: monochromatic @@ -231,13 +227,6 @@ display: it.strftime(160, 60, id(my_font40), TextAlign::BASELINE_CENTER, "%H:%M", id(esptime).now()); it.strftime(160, 80, id(my_font20), id(red), TextAlign::BASELINE_CENTER, "%d-%m-%Y", id(esptime).now()); - // Print outside temperature (from homeassistant sensor) - if (id(outside_temperature).has_state()) { - it.printf(316, 60, id(my_font20), id(blue), TextAlign::BASELINE_RIGHT , "%.1f°", id(outside_temperature).state); - } - - it.printf(316, 80, id(my_font15), id(blue), TextAlign::BASELINE_RIGHT, "Buiten"); - // Draw the image my_online_image at position it.image(160, 100, id(henk), ImageAlign::TOP_CENTER); - id: display_j3_Left