Skip to content

Instantly share code, notes, and snippets.

import time
import board
import neopixel
from digitalio import DigitalInOut, Direction, Pull
switch = DigitalInOut(board.D3)
switch.direction = Direction.INPUT
switch.pull = Pull.UP
pixel_pin = board.D2
import time
import board
import neopixel
pixel_pin = board.D2 #the ring data is connected to this pin
num_pixels = 16 #number of leds pixels on the ring
pixels = neopixel.NeoPixel(pixel_pin, num_pixels, brightness=0.3, auto_write=False)
import board
import neopixel
import time
pixel_pin = board.D2 #the ring data is connected to this pin
num_pixels = 16 #number of leds pixels on the ring
pixels = neopixel.NeoPixel(pixel_pin, num_pixels, brightness=0.3, auto_write=False)
import time
import board
import neopixel
from digitalio import DigitalInOut, Direction, Pull
import touchio
touch_pad = board.A0 # the ~1 pin
high_threshold = 4059
low_threshold = 3500
import time
import board
import neopixel
from digitalio import DigitalInOut, Direction, Pull
import touchio
touch_pad = board.A0 # the ~1 pin
high_threshold = 4059
low_threshold = 3500
import time
import board
import touchio
import digitalio
touch_pad = board.A0
high_threshold = 4059
low_threshold = 2500
touch = touchio.TouchIn(touch_pad)
import time
import board
import neopixel
from digitalio import DigitalInOut, Direction, Pull
import touchio
touch_pad = board.A0 # the ~1 pin
high_threshold = 4059
low_threshold = 2500
@lizzybrooks
lizzybrooks / code.py
Last active May 9, 2022 20:35 — forked from RajanRao12/code.py
Organic Light pattern with switch (doesn't work)
import time
import board
import neopixel
from digitalio import DigitalInOut, Direction, Pull
pixel_pin = board.D2
num_pixels = 12
switch = DigitalInOut(board.D3)
switch.direction = Direction.INPUT
import time
import board
import neopixel
from digitalio import DigitalInOut, Direction, Pull
import touchio
touch_pad = board.A0 # the ~1 pin
high_threshold = 4059
low_threshold = 3400
# Write your code here :-)
import time
import board
import neopixel
pixel_pin = board.D2
num_pixels = 12
pixels = neopixel.NeoPixel(pixel_pin, num_pixels, brightness=0.7, auto_write=False)