1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-30 06:33:51 +00:00

Better error message

This commit is contained in:
Otto Winter
2019-01-27 16:38:29 +01:00
parent 6d6876ca39
commit bd23584073

View File

@@ -247,7 +247,7 @@ def _lookup_pin(value):
return board_pins[value]
if value in base_pins:
return base_pins[value]
raise vol.Invalid(u"Can't find internal pin number for {}.".format(value))
raise vol.Invalid(u"Cannot resolve pin name '{}' for board {}.".format(value, CORE.board))
def _translate_pin(value):