mirror of
https://github.com/esphome/esphome.git
synced 2024-12-01 03:04:12 +01:00
29 lines
754 B
Python
29 lines
754 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import i2c
|
|
from esphome.const import CONF_ID
|
|
|
|
DEPENDENCIES = ["i2c"]
|
|
AUTO_LOAD = ["sensor", "binary_sensor"]
|
|
MULTI_CONF = True
|
|
|
|
CONF_APDS9960_ID = "apds9960_id"
|
|
|
|
apds9960_nds = cg.esphome_ns.namespace("apds9960")
|
|
APDS9960 = apds9960_nds.class_("APDS9960", cg.PollingComponent, i2c.I2CDevice)
|
|
|
|
CONFIG_SCHEMA = (
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(APDS9960),
|
|
}
|
|
)
|
|
.extend(cv.polling_component_schema("60s"))
|
|
.extend(i2c.i2c_device_schema(0x39))
|
|
)
|
|
|
|
|
|
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)
|