X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/d9dcc0b0776b0ce772a3f44b74ff2315d7be43f7..c24f5e6fa8655fd86333243f5738ca4c0bf97fe7:/python/testing/board/__init__.py diff --git a/python/testing/board/__init__.py b/python/testing/board/__init__.py index a961969..c38abc6 100644 --- a/python/testing/board/__init__.py +++ b/python/testing/board/__init__.py @@ -12,10 +12,12 @@ elif agnostic.board == "feather_huzzah": default_pin = feather_huzzah.GPIO4 led_pin = feather_huzzah.GPIO0 # red led led_hardwired = True - led_inverted = False + led_inverted = True elif agnostic.board == "pyboard": from board import pyboard default_pin = pyboard.X1 led_pin = board.pyboard.LED_BLUE led_hardwired = True led_inverted = False +else: + raise NotImplementedError("Board not supported")