Toggle Navigation
Hatchery
Eggs
Familar colours 2
__init__.py
Users
Badges
Login
Register
__init__.py
raw
Content
from machine import Pin from neopixel import NeoPixel import display import os from time import sleep import nvs powerPin = Pin(19, Pin.OUT) dataPin = Pin(5, Pin.OUT) np = NeoPixel(dataPin, 5) powerPin.on() np[0] = (37, 0, 224) np[2] = (74, 83, 225) np[1] = (246, 248, 247) np[4] = (255, 97, 112) np[3] = (227, 30, 51) np.write() display.drawFill(display.BLACK) display.drawPng(38,15,"apps/python/familar_colours_2/COPS.png") display.flush()