mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
a33bb32874
* Convert components to async-def syntax * Remove stray @coroutine * Manual part * Convert complexer components code to async-def * Manual cleanup * More manual cleanup
58 lines
1.6 KiB
Python
58 lines
1.6 KiB
Python
import esphome.config_validation as cv
|
|
import esphome.codegen as cg
|
|
from esphome import automation
|
|
from esphome.components import i2c, time
|
|
from esphome.const import CONF_ID
|
|
|
|
|
|
CODEOWNERS = ["@badbadc0ffee"]
|
|
DEPENDENCIES = ["i2c"]
|
|
ds1307_ns = cg.esphome_ns.namespace("ds1307")
|
|
DS1307Component = ds1307_ns.class_("DS1307Component", time.RealTimeClock, i2c.I2CDevice)
|
|
WriteAction = ds1307_ns.class_("WriteAction", automation.Action)
|
|
ReadAction = ds1307_ns.class_("ReadAction", automation.Action)
|
|
|
|
|
|
CONFIG_SCHEMA = time.TIME_SCHEMA.extend(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(DS1307Component),
|
|
}
|
|
).extend(i2c.i2c_device_schema(0x68))
|
|
|
|
|
|
@automation.register_action(
|
|
"ds1307.write_time",
|
|
WriteAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DS1307Component),
|
|
}
|
|
),
|
|
)
|
|
async def ds1307_write_time_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"ds1307.read_time",
|
|
ReadAction,
|
|
automation.maybe_simple_id(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DS1307Component),
|
|
}
|
|
),
|
|
)
|
|
async def ds1307_read_time_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
|
|
await cg.register_component(var, config)
|
|
await i2c.register_i2c_device(var, config)
|
|
await time.register_time(var, config)
|