-import agnostic
-from mcp import Enum
+from adafruit_blinka import Enum, agnostic
+
class Pin(Enum):
def __init__(self, id):
pass
if agnostic.microcontroller == "esp8266":
- from microcontroller.esp8266 import *
+ pass
elif agnostic.microcontroller == "stm32":
- from microcontroller.stm32 import *
+ pass
else:
raise NotImplementedError("Microcontroller not supported")
\ No newline at end of file