###############################################
## Electronic Textiles Workshop ##
## By Adrian Granchelli & Nicole Bertram ##
###############################################
## This code is made for the electronic scarf
## It will help find the number of LEDs you have
import board
import neopixel
## IMPORTANT VARIABLES ##
num_leds = 16 # the total number of LEDs
### LIGHTS ###
### PINS ###
lightDataPin = board.GP1
# initialization
pixels = neopixel.NeoPixel(lightDataPin, num_leds)
### REPEATING CODE ###
while True:
pixels[num_leds-1] = (255, 0, 0)