RoboMind Project - Find Spot, April 19, 2012, Cardinal Forest Elementary School
RoboMind website
Back to RoboMind Projects
See Basic Instructions
See Programming Structures
Other RoboMind exercises
Robo Exercise Set 1
RoboMind Find Spot
- Open RoboMind and the map findSpot1.map
- Type the command: forward(5)
- Type: forward(10) What does the robot say after running the program?
- What's the difference between these two programs:
repeat(7)
{
forward(1)
}
repeat
{
forward(1)
}
- Type in this program:
repeat
{
if(leftIsObstacle)
{
forward(1)
}
}
- Type this program to find the white spot:
repeat
{
if(leftIsObstacle)
{
forward(1)
}
if(leftIsWhite)
{
left
forward(1)
break
}
}
- Now try some other program exercises