mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
25 lines
856 B
Python
25 lines
856 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import binary_sensor
|
|
from esphome.const import CONF_ID, CONF_KEY
|
|
|
|
CONF_TM1637_ID = "tm1637_id"
|
|
|
|
tm1637_ns = cg.esphome_ns.namespace("tm1637")
|
|
TM1637Display = tm1637_ns.class_("TM1637Display", cg.PollingComponent)
|
|
TM1637Key = tm1637_ns.class_("TM1637Key", binary_sensor.BinarySensor)
|
|
|
|
CONFIG_SCHEMA = binary_sensor.binary_sensor_schema(TM1637Key).extend(
|
|
{
|
|
cv.GenerateID(CONF_TM1637_ID): cv.use_id(TM1637Display),
|
|
cv.Required(CONF_KEY): cv.int_range(min=0, max=15),
|
|
}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await binary_sensor.register_binary_sensor(var, config)
|
|
cg.add(var.set_keycode(config[CONF_KEY]))
|
|
hub = await cg.get_variable(config[CONF_TM1637_ID])
|
|
cg.add(hub.add_tm1637_key(var))
|