2018-04-07 01:23:03 +02:00
|
|
|
import esphomeyaml.config_validation as cv
|
|
|
|
from esphomeyaml.components import binary_sensor
|
|
|
|
from esphomeyaml.const import CONF_ID, CONF_NAME
|
2018-04-18 18:43:13 +02:00
|
|
|
from esphomeyaml.helpers import App, variable
|
|
|
|
|
|
|
|
DEPENDENCIES = ['mqtt']
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
PLATFORM_SCHEMA = binary_sensor.PLATFORM_SCHEMA.extend({
|
|
|
|
cv.GenerateID('status_binary_sensor'): cv.register_variable_id,
|
|
|
|
}).extend(binary_sensor.MQTT_BINARY_SENSOR_SCHEMA.schema)
|
|
|
|
|
|
|
|
|
|
|
|
def to_code(config):
|
|
|
|
rhs = App.make_status_binary_sensor(config[CONF_NAME])
|
2018-04-18 18:43:13 +02:00
|
|
|
status = variable('Application::MakeStatusBinarySensor', config[CONF_ID], rhs)
|
|
|
|
binary_sensor.setup_binary_sensor(status.Pstatus, config)
|
|
|
|
binary_sensor.setup_mqtt_binary_sensor(status.Pmqtt, config)
|
|
|
|
|
|
|
|
|
|
|
|
def build_flags(config):
|
|
|
|
return '-DUSE_STATUS_BINARY_SENSOR'
|