Skip to content

Commit

Permalink
Mill, support more heater types (#17676)
Browse files Browse the repository at this point in the history
* mill, suport more heater types

* mill requirements
  • Loading branch information
Danielhiversen authored and MartinHjelmare committed Oct 22, 2018
1 parent 96105ef commit 61a96ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion homeassistant/components/climate/mill.py
Expand Up @@ -17,7 +17,7 @@
from homeassistant.helpers import config_validation as cv
from homeassistant.helpers.aiohttp_client import async_get_clientsession

REQUIREMENTS = ['millheater==0.1.2']
REQUIREMENTS = ['millheater==0.2.0']

_LOGGER = logging.getLogger(__name__)

Expand All @@ -43,6 +43,7 @@ async def async_setup_platform(hass, config, async_add_entities,
_LOGGER.error("Failed to connect to Mill")
return

await mill_data_connection.update_rooms()
await mill_data_connection.update_heaters()

dev = []
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Expand Up @@ -606,7 +606,7 @@ mficlient==0.3.0
miflora==0.4.0

# homeassistant.components.climate.mill
millheater==0.1.2
millheater==0.2.0

# homeassistant.components.sensor.mitemp_bt
mitemp_bt==0.0.1
Expand Down

0 comments on commit 61a96ae

Please sign in to comment.