mirror of
https://github.com/esphome/esphome.git
synced 2026-02-18 15:35:59 -07:00
* Add support for Sensirion STS3x Temperature sensors * Removed humidty reading from STS3x sensor * Fixed line error and operand error * Fixed syntax * Add test snippet for STS3x sensor * Clean up * #550 Proactive fix for STS3x component reporting WARNING status and reinitialzing similar to SHT3xd * Flattened config. * Fixed missing temperature unit * Code formatting * Added marking for future commands * Cleanup * Removed whitespace * Cleanup * Cleanup
23 lines
803 B
Python
23 lines
803 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import i2c, sensor
|
|
from esphome.const import CONF_ID, ICON_THERMOMETER, UNIT_CELSIUS
|
|
|
|
DEPENDENCIES = ['i2c']
|
|
|
|
sts3x_ns = cg.esphome_ns.namespace('sts3x')
|
|
|
|
STS3XComponent = sts3x_ns.class_('STS3XComponent', sensor.Sensor,
|
|
cg.PollingComponent, i2c.I2CDevice)
|
|
|
|
CONFIG_SCHEMA = sensor.sensor_schema(UNIT_CELSIUS, ICON_THERMOMETER, 1).extend({
|
|
cv.GenerateID(): cv.declare_id(STS3XComponent),
|
|
}).extend(cv.polling_component_schema('60s')).extend(i2c.i2c_device_schema(0x4A))
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield cg.register_component(var, config)
|
|
yield sensor.register_sensor(var, config)
|
|
yield i2c.register_i2c_device(var, config)
|