This is how GB is on our raspberry pi micro SD Card
what are 32 GB
This goes at the beginning of functions after the function is defined?
what are global variables or variables
What Library is imported to use the Sense Hat in Python?
what is the sense_hat library
Finish the code
sense.set_pixel(x,gap,BLACK)
sense.set_pixel(x,gap-1,BLACK)
__________________________
What is sense.set_pixel(x,gap +1,BLACK)
Create a variable called score that increases by 1 every time it is called
score = score + 1 or score += 1
The Sense Hat uses code and user inputs to display this
What are LED lights
This stands for the X and Y coordinates on the sense hat
what is matrix
Which function is used to pause the program for a specified time?
What is sleep()
Find the error?
if x != 0 or y != 0 or z != 0:
This word is in front of all of our while loops to make the game not end
what is not
This is the programming we used to create the game on the raspberry pi
What is Python IDLE3
We used this variable to track whether the game is still being played
What is game_over
This function allows the creation of variability in the gap size for strategic gameplay
What is randint
What two variables go into this parameter?
def collision(_________):
What is x and gap
Your raspberry pi came with this search engine
What is duck duck go
DAILY DOUBLE
This is right below the programming tab on the raspberry pi viewer
We set this variable so our flappy Astronaut would fall like gravity
What is speed = +1
This advanced programming concept is primarily utilized in the Flappy Astronaut game to manage concurrent tasks?
What is Threading
What is missing in the code
accel = sense.get___________________
What is accelerometer_raw()
Set this mode to true to display messages on your pi as to what is going on in the code
What is debug_mode
The raspberry pi reads this and thus must adjust its z coordinate to counteract.
what is the gravitational pull of the Earth
We used this function to change the raw data of the accelerometer into a readable number for our coordinates.
What is round()
This function prepares the LED matrix for a fresh game session it time it is run
DAILY DOUBLE
column = Thread(target=draw_column)
column________
sleep(2)
How many different RGB color variations are there
What is 16,777,216 (closest to the answer)