mirror of
https://github.com/esphome/esphome.git
synced 2025-04-16 07:40:29 +01:00
28 lines
710 B
Python
28 lines
710 B
Python
import esphome.codegen as cg
|
|
from esphome.components import i2c
|
|
from esphome.components.audio_dac import AudioDac
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_ID
|
|
|
|
CODEOWNERS = ["@kbx81"]
|
|
DEPENDENCIES = ["i2c"]
|
|
|
|
es8156_ns = cg.esphome_ns.namespace("es8156")
|
|
ES8156 = es8156_ns.class_("ES8156", AudioDac, cg.Component, i2c.I2CDevice)
|
|
|
|
CONFIG_SCHEMA = (
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(ES8156),
|
|
}
|
|
)
|
|
.extend(cv.COMPONENT_SCHEMA)
|
|
.extend(i2c.i2c_device_schema(0x08))
|
|
)
|
|
|
|
|
|
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)
|