esphome/esphomeyaml/components/sensor/dallas.py

32 lines
1.2 KiB
Python
Raw Normal View History

2018-04-07 01:23:03 +02:00
import voluptuous as vol
import esphomeyaml.config_validation as cv
from esphomeyaml.components import sensor
2018-05-20 12:41:52 +02:00
from esphomeyaml.components.dallas import DallasComponent
from esphomeyaml.const import CONF_ADDRESS, CONF_DALLAS_ID, CONF_INDEX, CONF_NAME, \
2018-06-06 08:55:53 +02:00
CONF_RESOLUTION
2018-05-20 12:41:52 +02:00
from esphomeyaml.helpers import HexIntLiteral, get_variable
2018-04-07 01:23:03 +02:00
2018-05-14 11:50:56 +02:00
PLATFORM_SCHEMA = vol.All(sensor.PLATFORM_SCHEMA.extend({
2018-04-07 01:23:03 +02:00
vol.Exclusive(CONF_ADDRESS, 'dallas'): cv.hex_int,
vol.Exclusive(CONF_INDEX, 'dallas'): cv.positive_int,
2018-06-02 22:22:20 +02:00
cv.GenerateID(CONF_DALLAS_ID): cv.use_variable_id(DallasComponent),
2018-04-07 01:23:03 +02:00
vol.Optional(CONF_RESOLUTION): vol.All(vol.Coerce(int), vol.Range(min=8, max=12)),
2018-05-20 12:41:52 +02:00
}).extend(sensor.SENSOR_SCHEMA.schema), cv.has_at_least_one_key(CONF_ADDRESS, CONF_INDEX))
2018-04-07 01:23:03 +02:00
def to_code(config):
2018-06-02 22:22:20 +02:00
hub = None
for hub in get_variable(config[CONF_DALLAS_ID]):
yield
2018-04-07 01:23:03 +02:00
if CONF_ADDRESS in config:
address = HexIntLiteral(config[CONF_ADDRESS])
2018-06-06 08:55:53 +02:00
rhs = hub.Pget_sensor_by_address(config[CONF_NAME], address, config.get(CONF_RESOLUTION))
2018-04-07 01:23:03 +02:00
else:
rhs = hub.Pget_sensor_by_index(config[CONF_NAME], config[CONF_INDEX],
2018-06-06 08:55:53 +02:00
config.get(CONF_RESOLUTION))
2018-06-03 07:11:11 +02:00
sensor.register_sensor(rhs, config)
2018-05-06 15:56:12 +02:00
BUILD_FLAGS = '-DUSE_DALLAS_SENSOR'