1 """Configuration of testing fixtures depending on the board layout"""
2 from adafruit_blinka import agnostic
4 if agnostic.board == "feather_m0_express":
5 default_pin = feather_m0_express.D5
6 led_pin = feather_m0_express.D13
9 elif agnostic.board == "feather_huzzah":
10 from adafruit_blinka.board import feather_huzzah
12 default_pin = feather_huzzah.GPIO4
13 led_pin = feather_huzzah.GPIO0 # red led
16 elif agnostic.board == "pyboard":
17 default_pin = pyboard.X1
18 led_pin = adafruit_blinka.board.pyboard.LED_BLUE
22 raise NotImplementedError("Board not supported")