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:
kaustubhphatak 2016-09-23 12:17:40 +05:30 committed by Paulus Schoutsen
parent 8251039ca4
commit 7625aae373
2 changed files with 191 additions and 1 deletions

View file

@ -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