mirror of
https://github.com/esphome/esphome.git
synced 2026-03-03 11:18:21 -07:00
Co-authored-by: Antoine Lépée <alepee@MacBook-Pro-de-Antoine.local> Co-authored-by: Jonathan Swoboda <154711427+swoboda1337@users.noreply.github.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
42 lines
1.0 KiB
Python
42 lines
1.0 KiB
Python
import esphome.codegen as cg
|
|
from esphome.components import sensor, uart
|
|
import esphome.config_validation as cv
|
|
from esphome.const import (
|
|
DEVICE_CLASS_TEMPERATURE,
|
|
STATE_CLASS_MEASUREMENT,
|
|
UNIT_CELSIUS,
|
|
)
|
|
|
|
CONF_WTS01_ID = "wts01_id"
|
|
CODEOWNERS = ["@alepee"]
|
|
DEPENDENCIES = ["uart"]
|
|
|
|
wts01_ns = cg.esphome_ns.namespace("wts01")
|
|
WTS01Sensor = wts01_ns.class_(
|
|
"WTS01Sensor", cg.Component, uart.UARTDevice, sensor.Sensor
|
|
)
|
|
|
|
CONFIG_SCHEMA = (
|
|
sensor.sensor_schema(
|
|
WTS01Sensor,
|
|
unit_of_measurement=UNIT_CELSIUS,
|
|
accuracy_decimals=1,
|
|
device_class=DEVICE_CLASS_TEMPERATURE,
|
|
state_class=STATE_CLASS_MEASUREMENT,
|
|
)
|
|
.extend(cv.COMPONENT_SCHEMA)
|
|
.extend(uart.UART_DEVICE_SCHEMA)
|
|
)
|
|
|
|
FINAL_VALIDATE_SCHEMA = uart.final_validate_device_schema(
|
|
"wts01",
|
|
baud_rate=9600,
|
|
require_rx=True,
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = await sensor.new_sensor(config)
|
|
await cg.register_component(var, config)
|
|
await uart.register_uart_device(var, config)
|