1 """Configuration of testing fixtures depending on the board layout"""
4 if agnostic.board == "feather_m0_express":
5 from board import feather_m0_express
6 default_pin = feather_m0_express.D5
7 led_pin = feather_m0_express.D13
10 elif agnostic.board == "feather_huzzah":
11 from board import feather_huzzah
12 default_pin = feather_huzzah.GPIO4
13 led_pin = feather_huzzah.GPIO0 # red led
16 elif agnostic.board == "pyboard":
17 from board import pyboard
18 default_pin = pyboard.X1
19 led_pin = board.pyboard.LED_BLUE