Skip to content

Commit

Permalink
add heater model WH517S (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris4824 authored Dec 25, 2024
1 parent 53dcc57 commit b094998
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ Models that have been specifically tested can be found below.
- DR-HSH0017S
- WH719S
- WH739S
- WH517S

### Air Conditioners

Expand Down
11 changes: 11 additions & 0 deletions custom_components/dreo/pydreo/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,17 @@ def __init__(
"DR-HAP003S": DreoDeviceDetails(device_type=DreoDeviceType.AIR_PURIFIER),

# Heaters
"DR-HSH017BS": DreoDeviceDetails(
device_type=DreoDeviceType.HEATER,
preset_modes=["H1", "H2", "H3"],
device_ranges={HEAT_RANGE: (1, 3), ECOLEVEL_RANGE: (41, 85)},
hvac_modes=[
HEATER_MODE_COOLAIR,
HEATER_MODE_HOTAIR,
HEATER_MODE_ECO,
HEATER_MODE_OFF,
],
),
"DR-HSH004S": DreoDeviceDetails(
device_type=DreoDeviceType.HEATER,
preset_modes=["H1", "H2", "H3"],
Expand Down

0 comments on commit b094998

Please sign in to comment.