1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-21 12:42:21 +01:00

Fix my9231 IDs not being resolved

This commit is contained in:
Otto Winter
2018-11-13 19:00:36 +01:00
parent f368255739
commit 9b07bb6608
3 changed files with 11 additions and 4 deletions

View File

@@ -7,9 +7,9 @@ from esphomeyaml.const import (CONF_DATA_PIN, CONF_CLOCK_PIN, CONF_NUM_CHANNELS,
CONF_NUM_CHIPS, CONF_BIT_DEPTH, CONF_ID,
CONF_UPDATE_ON_BOOT)
from esphomeyaml.helpers import (gpio_output_pin_expression, App, Pvariable,
add, setup_component)
add, setup_component, Component)
MY9231OutputComponent = output.output_ns.namespace('MY9231OutputComponent')
MY9231OutputComponent = output.output_ns.class_('MY9231OutputComponent', Component)
MY9231_SCHEMA = vol.Schema({