Beat Visualizer
Use the A
button on your Adafruit Circuit Playground Express to follow a beat.
let item = 0
input.buttonA.onEvent(ButtonEvent.Click, () => {
light.graph(
item,
20
)
item = 0
})
forever(() => {
item += 1
pause(37)
})