Toggle Navigation
Hatchery
Eggs
Jolien_tryingtomakethekytefly
__init__.py
Users
Badges
Login
Register
__init__.py
raw
Content
from machine import Pin from neopixel import NeoPixel powerPin = Pin(19,Pin.OUT) dataPin=Pin(5,Pin.OUT) np = NeoPixel(dataPin,27) np[6]= (255,0,0) np.write()