What does the 2nd number in this block control?
What is speed?
What is heading?
What is the angle you want Sphero to roll at?
What does this block do?
What is the square with all the LEDs on called?
What is matrix?
If/Then and If/Then/Else blocks are _____?
What are conditionals?
What does the 3rd number in this block control?
What is duration?
Programming that executes one block or command at a time.
What is synchronous programming?
What does this block of code do?
What is straight and then turn on the light after 1 second?
Why is the gyroscope helpful?
What is it helps the robot maintain the orientation it's facing?
These blocks compare two values.
What are comparators?
What is the Block to change Sphero's color?
What is the Main LED block?
Programming that executes multiple blocks or commands at the same time.
What is asynchronous programming?
What does this code do?
What is go in a circle?
What does the "on collision" block do?
What is Bolt will do whatever block is attached to the "on collision" block?
The _______ block is a sensor that measures the Sphero's g-force (speed and direction).
What is accelerometer?
What does this block do?
What is senses the heading of Bolt then randomly heads at any degree between 150 & 210?
A piece of information, like a number value, that can change during a program.
What is variable?
If Pitch orientation < -30 is true, it will respond when _____.
What is tilted forward?
What does the heading block plus 180 degrees do?
Controls Bolt to roll in the opposite direction as the last roll.
Coding statement that tests whether a condition is true, then additional code is either executed or not based on the result.
What is If/Then statement?
What does the "yaw orientation" sensor do?
What is spin left or spin right?
Phrases that combine letters, numbers, and/or other characters.
What is string?
If Roll orientation < -30 is true, it will respond when ____.
What is tilted left?
When using the "play sound" block, what will happen if you toggle the "wait" to "continue"?
This tells Bolt to play the sound at the same time as completing the next block.
Control statement that repeats a section of code for a set number of times, until a condition is met, or for the entire time a program is running.
What is loop?