forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
Milestone
Description
I am unable to get a simple dotstar test working on a Trinket_m0 under 3.0.
This works under 2.x
I have placed the 3.x adafruit_dotstar.mpy in /lib.
Adafruit CircuitPython 3.0.0-alpha.1-51-g1805bca-dirty on 2018-01-08; Adafruit Trinket M0 with
samd21e18
>>>
>>>
>>> from board import *
>>> import adafruit_dotstar as dotstar
>>> pixel = dotstar.DotStar(APA102_SCK, APA102_MOSI, 1, brightness=.1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "adafruit_dotstar.py", line 70, in __init__
ValueError: Pin PA00 in use
>>>