]> Repositories - Adafruit_Blinka-hackapet.git/blobdiff - src/board.py
Renaming and refactoring typos. Experimental logic for board-based Pin naming, fallin...
[Adafruit_Blinka-hackapet.git] / src / board.py
index 707c643284d05280a08fe3d253964900764471da..cd0390bca1ce936e8fbe8503c0cf6361ef71f14c 100644 (file)
@@ -39,13 +39,11 @@ __repo__ = "https://github.com/adafruit/Adafruit_Micropython_Blinka.git"
 
 
 if board == "feather_huzzah":
 
 
 if board == "feather_huzzah":
-    pass
-elif board == "feather_m0_express":
-    pass
+    from adafruit_blinka.board.feather_huzzah import *
 elif board == "nodemcu":
 elif board == "nodemcu":
-    pass
+    from adafruit_blinka.board.nodemcu import *
 elif board == "pyboard":
 elif board == "pyboard":
-    pass
+    from adafruit_blinka.board.pyboard import *
 else:
     raise NotImplementedError("Board not supported")
 gc.collect()
\ No newline at end of file
 else:
     raise NotImplementedError("Board not supported")
 gc.collect()
\ No newline at end of file