mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-31 18:18:27 +02:00
69879920eb
* Add black Update pre commit Update pre commit add empty line * Format with black
32 lines
813 B
Python
32 lines
813 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import sensor
|
|
from esphome.const import (
|
|
CONF_ID,
|
|
DEVICE_CLASS_SIGNAL_STRENGTH,
|
|
ICON_EMPTY,
|
|
UNIT_DECIBEL,
|
|
)
|
|
|
|
DEPENDENCIES = ["wifi"]
|
|
wifi_signal_ns = cg.esphome_ns.namespace("wifi_signal")
|
|
WiFiSignalSensor = wifi_signal_ns.class_(
|
|
"WiFiSignalSensor", sensor.Sensor, cg.PollingComponent
|
|
)
|
|
|
|
CONFIG_SCHEMA = (
|
|
sensor.sensor_schema(UNIT_DECIBEL, ICON_EMPTY, 0, DEVICE_CLASS_SIGNAL_STRENGTH)
|
|
.extend(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(WiFiSignalSensor),
|
|
}
|
|
)
|
|
.extend(cv.polling_component_schema("60s"))
|
|
)
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield cg.register_component(var, config)
|
|
yield sensor.register_sensor(var, config)
|