if board == "feather_huzzah":
- pass
-elif board == "feather_m0_express":
- pass
+ from adafruit_blinka.board.feather_huzzah import *
elif board == "nodemcu":
- pass
+ from adafruit_blinka.board.nodemcu import *
elif board == "pyboard":
- pass
+ from adafruit_blinka.board.pyboard import *
else:
raise NotImplementedError("Board not supported")
gc.collect()
\ No newline at end of file