Skip to content

Commit

Permalink
Add temperature and humidity for room thermostat.
Browse files Browse the repository at this point in the history
Bumped to boschshcpy==0.2.53
  • Loading branch information
tschamm committed Jan 31, 2023
1 parent 62aa832 commit 7911ee4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion custom_components/bosch_shc/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ async def async_setup_entry(
)
)

for sensor in session.device_helper.wallthermostats:
for sensor in (
session.device_helper.wallthermostats + session.device_helper.roomthermostats
):
await async_migrate_to_new_unique_id(
hass, Platform.SENSOR, device=sensor, attr_name="Temperature"
)
Expand Down

0 comments on commit 7911ee4

Please sign in to comment.