mirror of
https://github.com/esphome/esphome.git
synced 2025-02-15 17:38:15 +00:00
30 lines
833 B
Python
30 lines
833 B
Python
import esphome.codegen as cg
|
|
from esphome.components import sensor, uart
|
|
from esphome.const import (
|
|
STATE_CLASS_MEASUREMENT,
|
|
UNIT_METER,
|
|
ICON_ARROW_EXPAND_VERTICAL,
|
|
)
|
|
|
|
CODEOWNERS = ["@netmikey"]
|
|
DEPENDENCIES = ["uart"]
|
|
|
|
hrxlmaxsonarwr_ns = cg.esphome_ns.namespace("hrxl_maxsonar_wr")
|
|
HrxlMaxsonarWrComponent = hrxlmaxsonarwr_ns.class_(
|
|
"HrxlMaxsonarWrComponent", sensor.Sensor, cg.Component, uart.UARTDevice
|
|
)
|
|
|
|
CONFIG_SCHEMA = sensor.sensor_schema(
|
|
HrxlMaxsonarWrComponent,
|
|
unit_of_measurement=UNIT_METER,
|
|
icon=ICON_ARROW_EXPAND_VERTICAL,
|
|
accuracy_decimals=3,
|
|
state_class=STATE_CLASS_MEASUREMENT,
|
|
).extend(uart.UART_DEVICE_SCHEMA)
|
|
|
|
|
|
async def to_code(config):
|
|
var = await sensor.new_sensor(config)
|
|
await cg.register_component(var, config)
|
|
await uart.register_uart_device(var, config)
|