white = (255, 255, 255) is what in circuit python?
What is a variable for the RGB color white?
This functions as a container that holds values for the code to reference, add to or subtract from. Always has an equals sign.
What is a variable?
for i <5:
What is 5 times
cpx.pixels.fill(255, 0, 0)
What is light up all neopixels with a bright red light?
The code that makes a circuit playground code loop forever.
What is while True?
for i<=10
What is 11
A way to troubleshoot your cpx if you don't see anything in your serial connection.
What is press reset?
What is eject and reattach?
The method used to hold up overhangs in your 3d design.
What are supports?
button_1 = DigitalInOut(board.A4) tells the circuit playground what information?
What is the button will be connected on A4?
This single keystroke tells the python code that something is inside of a loop or a function.
What is a tab?
The number of times a loop will process this code:
for i in range (0, 7)
What is 7
A ceramic disk that vibrates at different pitches when varying frequencies are run through it.
What is a piezzo buzzer?
The shortcut to group a collection of objects
What is Command G?
i = i+1
What is adds 1 to the variable i?
cpx.play_file("buzz.wav") tells the computer to do what action?
What is play the buzz.wav file through the circuit playground express.
for i in range(len(TONE_FREQ)):
What is how ever many elements are in the Tone_Freq list?
A digital signal that quickly turns on and off the current, reducing or increasing the power given to an object.
What is pulse width modulation?
A file type that Tinkercad can open
What is .stl file
What is .obj file
What is .svg file
print (fruit[-1].title())
What is print the last added item in the fruit list with the first letter capitalized?
if not button_1.value:
tells the circuit playground express to look out for what action?
What is a button press?
for i in range (0, 3):
print ("hello world")
print ("hello world three")
would print what output?
What is
hello world
hello world
hello world
hello world three
What bit rate does a sound file need to be exported as to work on the CPX?
What is 16 bit.
A way to cut an object in half.
What is a hollow rectangle?