Add support for mysensors HVAC device (#3405)
* Added Support for mysensnors Climate/HVAC device * Added Support for mysensnors-hvac device:fix pylint error * Added Support for mysensnors-hvac device:fix pylint error2 * Fixed Issues in code as per review comments * Fixed Linter Errors * Fixed Linter Errors:2 * Fixed Linter Errors:2 * Fixed Linter Errors * Fixed Linter Errors * Fixed Linter Errors * Added Support for MySensors HVAC| Fixed Review Comments| Removed Additional Comments * Added Support for MySensors HVAC| Fixed Review Comments Itr2 * Changes to correctly support devices with both high and low bound temperatures * Changed to optimize the code
This commit is contained in:
parent
8251039ca4
commit
7625aae373
2 changed files with 191 additions and 1 deletions
|
@ -158,7 +158,7 @@ def setup(hass, config): # pylint: disable=too-many-locals
|
|||
'No devices could be setup as gateways, check your configuration')
|
||||
return False
|
||||
|
||||
for component in 'sensor', 'switch', 'light', 'binary_sensor':
|
||||
for component in 'sensor', 'switch', 'light', 'binary_sensor', 'climate':
|
||||
discovery.load_platform(hass, component, DOMAIN, {}, config)
|
||||
|
||||
return True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue