This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from adafruit_circuitplayground.express import cpx | |
import time | |
import random | |
sound_enabled = False | |
cpx.pixels.brightness = 0.2 | |
cpx.pixels[0] = 0x003000 | |
cpx.pixels[9] = (30, 0, 0) | |
cpx.adjust_touch_threshold(200) |