From 8942088419f135da05c8ff3b592eccb8d861cefb Mon Sep 17 00:00:00 2001 From: Jan Bouwhuis Date: Tue, 11 Jun 2024 07:07:52 +0200 Subject: [PATCH] Customize incomfort binary sensor icons (#119331) --- homeassistant/components/incomfort/icons.json | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 homeassistant/components/incomfort/icons.json diff --git a/homeassistant/components/incomfort/icons.json b/homeassistant/components/incomfort/icons.json new file mode 100644 index 00000000000..eb93ed9a319 --- /dev/null +++ b/homeassistant/components/incomfort/icons.json @@ -0,0 +1,24 @@ +{ + "entity": { + "binary_sensor": { + "is_burning": { + "state": { + "off": "mdi:fire-off", + "on": "mdi:fire" + } + }, + "is_pumping": { + "state": { + "off": "mdi:pump-off", + "on": "mdi:pump" + } + }, + "is_tapping": { + "state": { + "off": "mdi:water-pump-off", + "on": "mdi:water-pump" + } + } + } + } +}