mirror of
https://github.com/esphome/esphome.git
synced 2024-11-05 09:16:46 +01:00
7c7032c59e
* Implement custom sensor platform
* Update
* Ethernet
* Lint
* Fix
* Login page
* Rename cookie secret
* Update manifest
* Update cookie check logic
* Favicon
* Fix
* Favicon manifest
* Fix
* Fix
* Fix
* Use hostname
* Message
* Temporary commit for screenshot
* Automatic board selection
* Undo temporary commit
* Update esphomeyaml-edge
* In-dashboard editing and hosting files locally
* Update esphomeyaml-edge
* Better ANSI color escaping
* Message
* Lint
* Download Efficiency
* Fix gitlab
* Fix
* Rename extra_libraries to libraries
* Add example
* Update README.md
* Update README.md
* Update README.md
* HassIO -> Hass.io
* Updates
* Add update available notice
* Update
* Fix substitutions
* Better error message
* Re-do dashboard ANSI colors
* Only include FastLED if user says so
* Autoscroll logs
* Remove old checks
* Use safer RedirectText
* Improvements
* Fix
* Use enviornment variable
* Use http://hassio/host/info
* Fix conditions
* Update platformio versions
* Revert "Use enviornment variable"
This reverts commit 7f038eb5d2
.
* Fix
* README update
* Temp
* Better invalid config messages
* Platformio debug
* Improve error messages
* Debug
* Remove debug
* Multi Conf
* Update
* Better paths
* Remove unused
* Fixes
* Lint
* lib_ignore
* Try fix platformio colors
* Fix dashboard scrolling
* Revert
* Lint
* Revert
101 lines
3.2 KiB
Python
101 lines
3.2 KiB
Python
import voluptuous as vol
|
|
|
|
from esphomeyaml.automation import ACTION_REGISTRY, maybe_simple_id
|
|
from esphomeyaml.components import mqtt
|
|
from esphomeyaml.components.mqtt import setup_mqtt_component
|
|
import esphomeyaml.config_validation as cv
|
|
from esphomeyaml.const import CONF_ID, CONF_INTERNAL, CONF_MQTT_ID
|
|
from esphomeyaml.cpp_generator import Pvariable, add, get_variable
|
|
from esphomeyaml.cpp_types import Action, Nameable, esphomelib_ns
|
|
|
|
PLATFORM_SCHEMA = cv.PLATFORM_SCHEMA.extend({
|
|
|
|
})
|
|
|
|
cover_ns = esphomelib_ns.namespace('cover')
|
|
|
|
Cover = cover_ns.class_('Cover', Nameable)
|
|
MQTTCoverComponent = cover_ns.class_('MQTTCoverComponent', mqtt.MQTTComponent)
|
|
|
|
CoverState = cover_ns.class_('CoverState')
|
|
COVER_OPEN = cover_ns.COVER_OPEN
|
|
COVER_CLOSED = cover_ns.COVER_CLOSED
|
|
|
|
# Actions
|
|
OpenAction = cover_ns.class_('OpenAction', Action)
|
|
CloseAction = cover_ns.class_('CloseAction', Action)
|
|
StopAction = cover_ns.class_('StopAction', Action)
|
|
|
|
COVER_SCHEMA = cv.MQTT_COMMAND_COMPONENT_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(Cover),
|
|
cv.GenerateID(CONF_MQTT_ID): cv.declare_variable_id(MQTTCoverComponent),
|
|
})
|
|
|
|
COVER_PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(COVER_SCHEMA.schema)
|
|
|
|
|
|
def setup_cover_core_(cover_var, mqtt_var, config):
|
|
if CONF_INTERNAL in config:
|
|
add(cover_var.set_internal(config[CONF_INTERNAL]))
|
|
setup_mqtt_component(mqtt_var, config)
|
|
|
|
|
|
def setup_cover(cover_obj, mqtt_obj, config):
|
|
cover_var = Pvariable(config[CONF_ID], cover_obj, has_side_effects=False)
|
|
mqtt_var = Pvariable(config[CONF_MQTT_ID], mqtt_obj, has_side_effects=False)
|
|
setup_cover_core_(cover_var, mqtt_var, config)
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_COVER'
|
|
|
|
CONF_COVER_OPEN = 'cover.open'
|
|
COVER_OPEN_ACTION_SCHEMA = maybe_simple_id({
|
|
vol.Required(CONF_ID): cv.use_variable_id(Cover),
|
|
})
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_COVER_OPEN, COVER_OPEN_ACTION_SCHEMA)
|
|
def cover_open_to_code(config, action_id, arg_type, template_arg):
|
|
for var in get_variable(config[CONF_ID]):
|
|
yield None
|
|
rhs = var.make_open_action(template_arg)
|
|
type = OpenAction.template(arg_type)
|
|
yield Pvariable(action_id, rhs, type=type)
|
|
|
|
|
|
CONF_COVER_CLOSE = 'cover.close'
|
|
COVER_CLOSE_ACTION_SCHEMA = maybe_simple_id({
|
|
vol.Required(CONF_ID): cv.use_variable_id(Cover),
|
|
})
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_COVER_CLOSE, COVER_CLOSE_ACTION_SCHEMA)
|
|
def cover_close_to_code(config, action_id, arg_type, template_arg):
|
|
for var in get_variable(config[CONF_ID]):
|
|
yield None
|
|
rhs = var.make_close_action(template_arg)
|
|
type = CloseAction.template(arg_type)
|
|
yield Pvariable(action_id, rhs, type=type)
|
|
|
|
|
|
CONF_COVER_STOP = 'cover.stop'
|
|
COVER_STOP_ACTION_SCHEMA = maybe_simple_id({
|
|
vol.Required(CONF_ID): cv.use_variable_id(Cover),
|
|
})
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_COVER_STOP, COVER_STOP_ACTION_SCHEMA)
|
|
def cover_stop_to_code(config, action_id, arg_type, template_arg):
|
|
for var in get_variable(config[CONF_ID]):
|
|
yield None
|
|
rhs = var.make_stop_action(template_arg)
|
|
type = StopAction.template(arg_type)
|
|
yield Pvariable(action_id, rhs, type=type)
|
|
|
|
|
|
def core_to_hass_config(data, config):
|
|
ret = mqtt.build_hass_config(data, 'cover', config, include_state=True, include_command=True)
|
|
if ret is None:
|
|
return None
|
|
return ret
|