mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-22 21:58:29 +02:00
d620b6dd5e
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
11 lines
247 B
Python
11 lines
247 B
Python
import esphome.codegen as cg
|
|
|
|
from esphome.components import i2c
|
|
|
|
|
|
CODEOWNERS = ["@martgras"]
|
|
|
|
sensirion_common_ns = cg.esphome_ns.namespace("sensirion_common")
|
|
|
|
SensirionI2CDevice = sensirion_common_ns.class_("SensirionI2CDevice", i2c.I2CDevice)
|