mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
5c65f9f9ad
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
39 lines
983 B
Python
39 lines
983 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import sensor
|
|
from esphome.const import (
|
|
CONF_TYPE,
|
|
STATE_CLASS_MEASUREMENT,
|
|
UNIT_PERCENT,
|
|
ICON_LIGHTBULB,
|
|
)
|
|
from . import APDS9960, CONF_APDS9960_ID
|
|
|
|
DEPENDENCIES = ["apds9960"]
|
|
|
|
TYPES = {
|
|
"CLEAR": "set_clear_channel",
|
|
"RED": "set_red_channel",
|
|
"GREEN": "set_green_channel",
|
|
"BLUE": "set_blue_channel",
|
|
"PROXIMITY": "set_proximity",
|
|
}
|
|
|
|
CONFIG_SCHEMA = sensor.sensor_schema(
|
|
unit_of_measurement=UNIT_PERCENT,
|
|
icon=ICON_LIGHTBULB,
|
|
accuracy_decimals=1,
|
|
state_class=STATE_CLASS_MEASUREMENT,
|
|
).extend(
|
|
{
|
|
cv.Required(CONF_TYPE): cv.one_of(*TYPES, upper=True),
|
|
cv.GenerateID(CONF_APDS9960_ID): cv.use_id(APDS9960),
|
|
}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
hub = await cg.get_variable(config[CONF_APDS9960_ID])
|
|
var = await sensor.new_sensor(config)
|
|
func = getattr(hub, TYPES[config[CONF_TYPE]])
|
|
cg.add(func(var))
|