mirror of
https://github.com/esphome/esphome.git
synced 2024-11-28 12:46:22 +01:00
138de643a2
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
24 lines
652 B
Python
24 lines
652 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import spi
|
|
from esphome.const import CONF_ID
|
|
|
|
DEPENDENCIES = ["spi"]
|
|
MULTI_CONF = True
|
|
CODEOWNERS = ["@DeerMaximum"]
|
|
|
|
adc128s102_ns = cg.esphome_ns.namespace("adc128s102")
|
|
ADC128S102 = adc128s102_ns.class_("ADC128S102", cg.Component, spi.SPIDevice)
|
|
|
|
CONFIG_SCHEMA = cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(ADC128S102),
|
|
}
|
|
).extend(spi.spi_device_schema(cs_pin_required=True))
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await cg.register_component(var, config)
|
|
await spi.register_spi_device(var, config)
|