The Arduino on your Boe-Bot is always pulling power from the battery pack that is plugged into your robot, even when the slide switch is set to 0.
Match the power switch settings with their descriptions below.
| Stavka koja se može prevući | arrow_right_alt | Odgovarajuća stavka |
|---|---|---|
1 | arrow_right_alt | No power to the shield, yes power to the Arduino |
2 | arrow_right_alt | Power to the Arduino and the shield, but not the motors. |
0 | arrow_right_alt | Power to the Arduino, the shield, and the motors. |
The pin numbers shown on the Boe-Bot Shield receive their signals from the same numbered pins on the Arduino.
The pin numbers on the Boe-Bot Shield are not shared across different same numbered pins on the board.
Mark the side of the Boe-Bot that we call the front of the robot.
What lines of code are used to create servo variables that can be referenced throughout the rest of the program?
Which function is used to tell the program where the servos are plugged in on the digital input and output pins?
Which function is used to stop the servo motors?
Which function is used to set the speed of the servo motors?
What should the robot be doing with the code listed below?
What should you do if your robot wheels are moving when they are programmed to be still?
Match the commands with the robot actions based on the following criteria:
| Stavka koja se može prevući | arrow_right_alt | Odgovarajuća stavka |
|---|---|---|
servoLeft.writeMicroseconds(1700); servoRight.writeMicroseconds(1500); | arrow_right_alt | Stop |
servoLeft.writeMicroseconds(1500); servoRight.writeMicroseconds(1500); | arrow_right_alt | Forward |
servoLeft.writeMicroseconds(1700); servoRight.writeMicroseconds(1700); | arrow_right_alt | Pivot |
servoLeft.writeMicroseconds(1700); servoRight.writeMicroseconds(1300); | arrow_right_alt | Rotate |
Why do we use a tone at the beginning of our programs?