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?
Bolt+ has lights that go around the edge and the full color can be changed with this one block.
What is Main LED?
What does the "yaw orientation" sensor do?
What is spin left or spin right?
This block will code Bolt+ to talk, but the sound comes through the computer.
What is a speak block?
What is aim?
What is the blue light faces the programmer and will indicate 180o?
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, like greater than and less than.
What are comparators?
What does the 3rd number in this block control?
What is duration?
Programming that executes multiple blocks or commands at the same time.
What is asynchronous programming?
What does this block do?
What is senses the heading of Bolt then randomly heads at any degree between 150 & 210?
What does the "on collision" block do?
What is Bolt will do whatever block is attached to the "on collision" block?
If/Then and If/Then/Else blocks are _____?
What are conditionals?
We set this sensor to sense when Bolt+ experienced more than a certain number of g (force), then Bolt+ would complete the connected code (like make an animal sound).
What is the accelerometer sensor?
Programming that executes one block or command at a time.
What is synchronous programming?
If Pitch orientation < -30 is true, it will respond when _____.
What is tilted forward or down?
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 are the green blocks that are named and when "called", the program will complete the blocks that are attached to it?
What are function blocks?
A piece of information, like a number value, that can change during a program.
What is variable?
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?