mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
15 lines
604 B
Python
15 lines
604 B
Python
|
import esphomeyaml.config_validation as cv
|
||
|
from esphomeyaml.components import binary_sensor
|
||
|
from esphomeyaml.const import CONF_ID, CONF_NAME
|
||
|
from esphomeyaml.helpers import App, Pvariable
|
||
|
|
||
|
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])
|
||
|
gpio = Pvariable('binary_sensor::MQTTBinarySensorComponent', config[CONF_ID], rhs)
|
||
|
binary_sensor.setup_mqtt_binary_sensor(gpio.Pmqtt, config)
|