Skip to content

Commit

Permalink
Removes unsuitable device classes
Browse files Browse the repository at this point in the history
Removes unsuitable device_class from
AquareaRoom Heater Enabled
Aquarea Force heater status
  • Loading branch information
tjani8 authored and kamaradclimber committed Jan 7, 2024
1 parent c8f7258 commit e2f6f21
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions custom_components/aquarea/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -867,8 +867,7 @@ def build_binary_sensors(
heishamon_topic_id="TOP59",
key=f"{mqtt_prefix}main/Room_Heater_State",
name="Aquarea Room Heater Enabled",
state=bit_to_bool,
device_class=BinarySensorDeviceClass.HEAT,
state=bit_to_bool,
),
HeishaMonBinarySensorEntityDescription(
heishamon_topic_id="TOP60",
Expand All @@ -888,8 +887,7 @@ def build_binary_sensors(
heishamon_topic_id="TOP68",
key=f"{mqtt_prefix}main/Force_Heater_State",
name="Aquarea Force heater status",
state=bit_to_bool,
device_class=BinarySensorDeviceClass.RUNNING,
state=bit_to_bool,
),
HeishaMonBinarySensorEntityDescription(
heishamon_topic_id="TOP93",
Expand Down

0 comments on commit e2f6f21

Please sign in to comment.