1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-14 06:38:17 +00:00

Fix GPIO expression issue with no inverted set

This commit is contained in:
Otto Winter 2018-05-16 23:04:33 +02:00
parent b92e0f282f
commit 941b767907

View File

@ -424,7 +424,7 @@ def exp_gpio_pin_(obj, conf, default_mode):
raise ESPHomeYAMLError(u"Unknown default mode {}".format(default_mode))
if conf.get(CONF_INVERTED) is None:
return obj(conf[CONF_NUMBER], conf.get(CONF_MODE))
return obj(conf[CONF_NUMBER], RawExpression(conf.get(CONF_MODE, default_mode)))
return obj(conf[CONF_NUMBER], RawExpression(conf.get(CONF_MODE, default_mode)),
conf[CONF_INVERTED])