9 lines
198 B
Python
9 lines
198 B
Python
from adafruit_circuitplayground.express import cpx
|
|
|
|
while True:
|
|
if cpx.button_a:
|
|
cpx.start_tone(262)
|
|
elif cpx.button_b:
|
|
cpx.start_tone(294)
|
|
else:
|
|
cpx.stop_tone()
|