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