mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 12:43:28 +02:00
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import sensor
|
|
from esphome.const import (
|
|
UNIT_DEGREES,
|
|
ICON_WEATHER_SUNSET,
|
|
CONF_TYPE,
|
|
)
|
|
from .. import sun_ns, CONF_SUN_ID, Sun
|
|
|
|
DEPENDENCIES = ["sun"]
|
|
|
|
SunSensor = sun_ns.class_("SunSensor", sensor.Sensor, cg.PollingComponent)
|
|
SensorType = sun_ns.enum("SensorType")
|
|
TYPES = {
|
|
"elevation": SensorType.SUN_SENSOR_ELEVATION,
|
|
"azimuth": SensorType.SUN_SENSOR_AZIMUTH,
|
|
}
|
|
|
|
CONFIG_SCHEMA = (
|
|
sensor.sensor_schema(
|
|
SunSensor,
|
|
unit_of_measurement=UNIT_DEGREES,
|
|
icon=ICON_WEATHER_SUNSET,
|
|
accuracy_decimals=1,
|
|
)
|
|
.extend(
|
|
{
|
|
cv.GenerateID(CONF_SUN_ID): cv.use_id(Sun),
|
|
cv.Required(CONF_TYPE): cv.enum(TYPES, lower=True),
|
|
}
|
|
)
|
|
.extend(cv.polling_component_schema("60s"))
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = await sensor.new_sensor(config)
|
|
await cg.register_component(var, config)
|
|
|
|
cg.add(var.set_type(config[CONF_TYPE]))
|
|
paren = await cg.get_variable(config[CONF_SUN_ID])
|
|
cg.add(var.set_parent(paren))
|