mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
8e75980ebd
* Cleanup dashboard JS * Add vscode * Save start_mark/end_mark * Updates * Updates * Remove need for cv.nameable It's a bit hacky but removes so much bloat from integrations * Add enum helper * Document APIs, and Improvements * Fixes * Fixes * Update PULL_REQUEST_TEMPLATE.md * Updates * Updates * Updates
25 lines
867 B
Python
25 lines
867 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome import pins
|
|
from esphome.const import CONF_ID, CONF_PIN
|
|
|
|
MULTI_CONF = True
|
|
AUTO_LOAD = ['sensor']
|
|
|
|
CONF_ONE_WIRE_ID = 'one_wire_id'
|
|
dallas_ns = cg.esphome_ns.namespace('dallas')
|
|
DallasComponent = dallas_ns.class_('DallasComponent', cg.PollingComponent)
|
|
ESPOneWire = dallas_ns.class_('ESPOneWire')
|
|
|
|
CONFIG_SCHEMA = cv.Schema({
|
|
cv.GenerateID(): cv.declare_id(DallasComponent),
|
|
cv.GenerateID(CONF_ONE_WIRE_ID): cv.declare_id(ESPOneWire),
|
|
cv.Required(CONF_PIN): pins.gpio_input_pin_schema,
|
|
}).extend(cv.polling_component_schema('60s'))
|
|
|
|
|
|
def to_code(config):
|
|
pin = yield cg.gpio_pin_expression(config[CONF_PIN])
|
|
one_wire = cg.new_Pvariable(config[CONF_ONE_WIRE_ID], pin)
|
|
var = cg.new_Pvariable(config[CONF_ID], one_wire)
|
|
yield cg.register_component(var, config)
|