]> Repositories - Adafruit_Blinka-hackapet.git/blobdiff - src/board.py
Implementation of hardware I2C. Added timeout and receiver_buffer_size handling....
[Adafruit_Blinka-hackapet.git] / src / board.py
index 707c643284d05280a08fe3d253964900764471da..f332cd90d2495b679d5c04fdcccd684aff9367a5 100644 (file)
@@ -37,15 +37,12 @@ gc.collect()
 __version__ = "0.0.0-auto.0"
 __repo__ = "https://github.com/adafruit/Adafruit_Micropython_Blinka.git"
 
 __version__ = "0.0.0-auto.0"
 __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")
 else:
     raise NotImplementedError("Board not supported")
-gc.collect()
\ No newline at end of file
+gc.collect()