From 4e770ce3ffaa23a71d1ce4c55e9c976b0b880aa6 Mon Sep 17 00:00:00 2001 From: Commander1024 Date: Mon, 28 Mar 2022 18:00:41 +0200 Subject: [PATCH] Added bathroom temp/humidity sensors via MQTT. --- sensors.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/sensors.yaml b/sensors.yaml index 4ba6c05..c487dc7 100644 --- a/sensors.yaml +++ b/sensors.yaml @@ -71,3 +71,18 @@ sun_setting_template: friendly_name: "Sun Setting Template" value_template: "{{ as_timestamp(states.sun.sun.attributes.next_setting) | timestamp_custom ('%H:%M') }}" + +# MQTT bathroom sensors + - platform: mqtt + name: "Badezimmer Temperatur" + unique_id: bathroom.temperature + state_topic: "home/bathroom/climate/sensor/temperature" + unit_of_measurement: '°C' + force_update: true + + - platform: mqtt + name: "Badezimmer Luftfeuchtigkeit" + unique_id: bathroom.humidity + state_topic: "home/bathroom/climate/sensor/humidity" + unit_of_measurement: '%' + force_update: true