Mhmmmm Pi
X's and Y's
IMPORTant Stuff
DEFinitely Need This
??
100

This is how GB is on our raspberry pi micro SD Card

what are 32 GB

100

This goes at the beginning of functions after the function is defined?

what are global variables or variables

100

What Library is imported to use the Sense Hat in Python?

what is the sense_hat library

100

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)

100

Create a variable called score that increases by 1 every time it is called

score = score + 1 or score += 1

200

The Sense Hat uses code and user inputs to display this

What are LED lights

200

This stands for the X and Y coordinates on the sense hat

what is matrix

200

Which function is used to pause the program for a specified time?

What is sleep()

200

Find the error?

if x != 0 or y != 0 or z != 0:

What is z != 0:
200

This word is in front of all of our while loops to make the game not end 

what is not

300

This is the programming we used to create the game on the raspberry pi

What is Python IDLE3

300

We used this variable to track whether the game is still being played

What is game_over

300

This function allows the creation of variability in the gap size for strategic gameplay

What is randint 

300

What two variables go into this parameter?

def collision(_________):

What is x and gap

300

Your raspberry pi came with this search engine

What is duck duck go

400

DAILY DOUBLE

This is right below the programming tab on the raspberry pi viewer

400

We set this variable so our flappy Astronaut would fall like gravity

What is speed = +1

400

This advanced programming concept is primarily utilized in the Flappy Astronaut game to manage concurrent tasks?

What is Threading

400

What is missing in the code

accel = sense.get___________________

What is accelerometer_raw()

400

Set this mode to true to display messages on your pi as to what is going on in the code

What is debug_mode

500

The raspberry pi reads this and thus must adjust its z coordinate to counteract. 

what is the gravitational pull of the Earth

500

We used this function to change the raw data of the accelerometer into a readable number for our coordinates. 

What is round()

500

This function prepares the LED matrix for a fresh game session it time it is run

what is sense.clear()
500

DAILY DOUBLE

column = Thread(target=draw_column)
        column________
        sleep(2)

500

How many different RGB color variations are there

What is 16,777,216 (closest to the answer)

M
e
n
u