1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-05 12:52:19 +01:00

Add cover position/tilt support (#496)

* Add climate support

* Fixes

* Updates

* Updates

* Add ota

* Remove climate changes

* Lint
This commit is contained in:
Otto Winter
2019-04-08 18:08:58 +02:00
committed by GitHub
parent cb9f36a153
commit 7fd5634a51
21 changed files with 425 additions and 192 deletions

View File

@@ -266,6 +266,9 @@ CONF_INTERNAL = 'internal'
CONF_BUILD_PATH = 'build_path'
CONF_PLATFORMIO_OPTIONS = 'platformio_options'
CONF_REBOOT_TIMEOUT = 'reboot_timeout'
CONF_STOP = 'stop'
CONF_POSITION = 'position'
CONF_TILT = 'tilt'
CONF_INVERT = 'invert'
CONF_DELAYED_ON = 'delayed_on'
CONF_DELAYED_OFF = 'delayed_off'
@@ -299,7 +302,13 @@ CONF_COLOR_TEMPERATURE = 'color_temperature'
CONF_BATTERY_LEVEL = 'battery_level'
CONF_MOISTURE = 'moisture'
CONF_CONDUCTIVITY = 'conductivity'
CONF_OPEN_ENDSTOP = 'open_endstop'
CONF_OPEN_DURATION = 'open_duration'
CONF_CLOSE_ENDSTOP = 'close_endstop'
CONF_CLOSE_DURATION = 'close_duration'
CONF_MAX_DURATION = 'max_duration'
CONF_RC_SWITCH_RAW = 'rc_switch_raw'
CONF_CURRENT_OPERATION = 'current_operation'
CONF_RC_SWITCH_TYPE_A = 'rc_switch_type_a'
CONF_RC_SWITCH_TYPE_B = 'rc_switch_type_b'
CONF_RC_SWITCH_TYPE_C = 'rc_switch_type_c'