mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 19:54:14 +01:00
18 lines
503 B
Python
18 lines
503 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import binary_sensor
|
|
from . import AS3935, CONF_AS3935_ID
|
|
|
|
DEPENDENCIES = ["as3935"]
|
|
|
|
CONFIG_SCHEMA = binary_sensor.BINARY_SENSOR_SCHEMA.extend(
|
|
{
|
|
cv.GenerateID(CONF_AS3935_ID): cv.use_id(AS3935),
|
|
}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
hub = await cg.get_variable(config[CONF_AS3935_ID])
|
|
var = await binary_sensor.new_binary_sensor(config)
|
|
cg.add(hub.set_thunder_alert_binary_sensor(var))
|