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

    1. Open RoboMind and the map findSpot1.map

    2. Type the command: forward(5)

    3. Type: forward(10) What does the robot say after running the program?

    4. What's the difference between these two programs:
      repeat(7)
      {
          forward(1)
      }
      
      repeat
      {
          forward(1)
      }
      

    5. Type in this program:
      repeat
      {
          if(leftIsObstacle)
          {
              forward(1)
          }
      }
      

    6. Type this program to find the white spot:
      repeat
      {
          if(leftIsObstacle)
          {
              forward(1)
          }
          if(leftIsWhite)
          {
              left
              forward(1)
              break
          }
      }
      

    7. Now try some other program exercises