X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/72e45c78d61112a5e4a5c2d75f44006d43cedfe0..5f6bb4e415c72e5d416da99a1b116de1644bcff5:/src/board.py?ds=inline diff --git a/src/board.py b/src/board.py index 707c643..cd0390b 100644 --- a/src/board.py +++ b/src/board.py @@ -39,13 +39,11 @@ __repo__ = "https://github.com/adafruit/Adafruit_Micropython_Blinka.git" 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