mirror of
https://github.com/esphome/esphome.git
synced 2024-11-04 09:01:53 +01:00
7c7032c59e
* Implement custom sensor platform
* Update
* Ethernet
* Lint
* Fix
* Login page
* Rename cookie secret
* Update manifest
* Update cookie check logic
* Favicon
* Fix
* Favicon manifest
* Fix
* Fix
* Fix
* Use hostname
* Message
* Temporary commit for screenshot
* Automatic board selection
* Undo temporary commit
* Update esphomeyaml-edge
* In-dashboard editing and hosting files locally
* Update esphomeyaml-edge
* Better ANSI color escaping
* Message
* Lint
* Download Efficiency
* Fix gitlab
* Fix
* Rename extra_libraries to libraries
* Add example
* Update README.md
* Update README.md
* Update README.md
* HassIO -> Hass.io
* Updates
* Add update available notice
* Update
* Fix substitutions
* Better error message
* Re-do dashboard ANSI colors
* Only include FastLED if user says so
* Autoscroll logs
* Remove old checks
* Use safer RedirectText
* Improvements
* Fix
* Use enviornment variable
* Use http://hassio/host/info
* Fix conditions
* Update platformio versions
* Revert "Use enviornment variable"
This reverts commit 7f038eb5d2
.
* Fix
* README update
* Temp
* Better invalid config messages
* Platformio debug
* Improve error messages
* Debug
* Remove debug
* Multi Conf
* Update
* Better paths
* Remove unused
* Fixes
* Lint
* lib_ignore
* Try fix platformio colors
* Fix dashboard scrolling
* Revert
* Lint
* Revert
50 lines
1.6 KiB
Python
50 lines
1.6 KiB
Python
from esphomeyaml.const import CONF_INVERTED, CONF_MODE, CONF_NUMBER, CONF_PCF8574, \
|
|
CONF_SETUP_PRIORITY
|
|
from esphomeyaml.core import CORE, EsphomeyamlError
|
|
from esphomeyaml.cpp_generator import IntLiteral, RawExpression
|
|
from esphomeyaml.cpp_types import GPIOInputPin, GPIOOutputPin
|
|
|
|
|
|
def generic_gpio_pin_expression_(conf, mock_obj, default_mode):
|
|
if conf is None:
|
|
return
|
|
number = conf[CONF_NUMBER]
|
|
inverted = conf.get(CONF_INVERTED)
|
|
if CONF_PCF8574 in conf:
|
|
from esphomeyaml.components import pcf8574
|
|
|
|
for hub in CORE.get_variable(conf[CONF_PCF8574]):
|
|
yield None
|
|
|
|
if default_mode == u'INPUT':
|
|
mode = pcf8574.PCF8675_GPIO_MODES[conf.get(CONF_MODE, u'INPUT')]
|
|
yield hub.make_input_pin(number, mode, inverted)
|
|
return
|
|
elif default_mode == u'OUTPUT':
|
|
yield hub.make_output_pin(number, inverted)
|
|
return
|
|
else:
|
|
raise EsphomeyamlError(u"Unknown default mode {}".format(default_mode))
|
|
if len(conf) == 1:
|
|
yield IntLiteral(number)
|
|
return
|
|
mode = RawExpression(conf.get(CONF_MODE, default_mode))
|
|
yield mock_obj(number, mode, inverted)
|
|
|
|
|
|
def gpio_output_pin_expression(conf):
|
|
for exp in generic_gpio_pin_expression_(conf, GPIOOutputPin, 'OUTPUT'):
|
|
yield None
|
|
yield exp
|
|
|
|
|
|
def gpio_input_pin_expression(conf):
|
|
for exp in generic_gpio_pin_expression_(conf, GPIOInputPin, 'INPUT'):
|
|
yield None
|
|
yield exp
|
|
|
|
|
|
def setup_component(obj, config):
|
|
if CONF_SETUP_PRIORITY in config:
|
|
CORE.add(obj.set_setup_priority(config[CONF_SETUP_PRIORITY]))
|