mirror of
https://github.com/esphome/esphome.git
synced 2024-12-22 13:34:54 +01:00
Add Homeassistant Binary Sensor (#409)
This commit is contained in:
parent
7c28eca6de
commit
f185ba7a21
2 changed files with 33 additions and 0 deletions
30
esphomeyaml/components/binary_sensor/homeassistant.py
Normal file
30
esphomeyaml/components/binary_sensor/homeassistant.py
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
import voluptuous as vol
|
||||||
|
|
||||||
|
from esphomeyaml.components import binary_sensor
|
||||||
|
import esphomeyaml.config_validation as cv
|
||||||
|
from esphomeyaml.const import CONF_ENTITY_ID, CONF_ID, CONF_NAME
|
||||||
|
from esphomeyaml.cpp_generator import Pvariable
|
||||||
|
from esphomeyaml.cpp_types import App
|
||||||
|
|
||||||
|
DEPENDENCIES = ['api']
|
||||||
|
|
||||||
|
HomeassistantBinarySensor = binary_sensor.binary_sensor_ns.class_('HomeassistantBinarySensor',
|
||||||
|
binary_sensor.BinarySensor)
|
||||||
|
|
||||||
|
PLATFORM_SCHEMA = cv.nameable(binary_sensor.BINARY_SENSOR_PLATFORM_SCHEMA.extend({
|
||||||
|
cv.GenerateID(): cv.declare_variable_id(HomeassistantBinarySensor),
|
||||||
|
vol.Required(CONF_ENTITY_ID): cv.entity_id,
|
||||||
|
}))
|
||||||
|
|
||||||
|
|
||||||
|
def to_code(config):
|
||||||
|
rhs = App.make_homeassistant_binary_sensor(config[CONF_NAME], config[CONF_ENTITY_ID])
|
||||||
|
subs = Pvariable(config[CONF_ID], rhs)
|
||||||
|
binary_sensor.setup_binary_sensor(subs, config)
|
||||||
|
|
||||||
|
|
||||||
|
BUILD_FLAGS = '-DUSE_HOMEASSISTANT_BINARY_SENSOR'
|
||||||
|
|
||||||
|
|
||||||
|
def to_hass_config(data, config):
|
||||||
|
return binary_sensor.core_to_hass_config(data, config)
|
|
@ -158,6 +158,9 @@ binary_sensor:
|
||||||
- platform: apds9960
|
- platform: apds9960
|
||||||
direction: right
|
direction: right
|
||||||
name: APDS9960 Right
|
name: APDS9960 Right
|
||||||
|
- platform: homeassistant
|
||||||
|
entity_id: binary_sensor.hello_world
|
||||||
|
id: ha_hello_world_binary
|
||||||
|
|
||||||
esp32_ble_tracker:
|
esp32_ble_tracker:
|
||||||
scan_interval: 300s
|
scan_interval: 300s
|
||||||
|
|
Loading…
Reference in a new issue