Grid: | ||
Tics Lines: |
|
Width
px
|
Hash Lines: |
|
Width
px
|
Labels: |
|
Font
px
|
Trace Lines: | ||
Robot 1: |
|
Width
px
|
Robot 2: |
|
Width
px
|
Robot 3: |
|
Width
px
|
Robot 4: |
|
Width
px
|
Axes: | x-axis | y-axis | Show Grid |
Grid: | 24x24 inches | 36x36 inches | 72x72 inches |
96x96 inches | 192x192 inches | ||
Quad: | 4 quadrants | 1 quadrant | Hardware |
Units: | US Customary | Metric |
Background: |
![]() |
|
|
|
The first driveDistance() will drive the linkbot forward 5 units. The program will then prompt you to input the rest of the distance, so the linkbot will reach the green dot.
/* Code generated by RoboBlockly v2.0 */ #include <linkbot.h> double distance; CLinkbotI robot; double radius = 1.75; robot.driveDistance(5, radius); robot.delaySeconds(0.3); distance = 10; robot.driveDistance(distance, radius);
Problem Statement: The first driveDistance() will drive the linkbot forward 5 units. The program will then prompt you to input the rest of the distance, so the linkbot will reach the green dot. |
|||||||||||