]> Repositories - hackapet/Adafruit_Blinka.git/blobdiff - src/microcontroller/__init__.py
begin i2c
[hackapet/Adafruit_Blinka.git] / src / microcontroller / __init__.py
index 5957a91c2cbec799d540784411b904973c8f7b38..62a2baf03b65601b08426f08b40e92ab41a840c3 100755 (executable)
@@ -26,5 +26,7 @@ if agnostic.microcontroller == "esp8266":
     from adafruit_blinka.microcontroller.esp8266 import *
 elif agnostic.microcontroller == "stm32":
     from adafruit_blinka.microcontroller.stm32 import *
+elif agnostic.microcontroller == "raspi_3":
+    from adafruit_blinka.microcontroller.raspi_23 import *
 else:
-    raise NotImplementedError("Microcontroller not supported")
+    raise NotImplementedError("Microcontroller not supported: ", agnostic.microcontroller)