RoboMind Projects - Example scripts, May 1, 2012, Cardinal Forest Elementary School

RoboMind website
RoboMind Example scripts
RoboMind Basic instructions: move, paint, grab, see
RoboMind Programming Structures: comment, loops, if-structures, procedures, end
Back to RoboMind Projects

For more programming challenges, see Robo Exercise Set 1

  • RoboMind example scripts/programs

    RoboMind exercise for April 26, 2012 - Draw a white and black spiral design.

    1. Open RoboMind


      See also: basic instructions: paint, and move


    2. Find the Open Map menu

    3. Open the map "OpenArea.map"

    4. Use right-click to zoom in and zoom out

    5. Zoom out to see the whole open field

    6. Open the Remote control, use the Run menu tab

    7. Learn how to use the Remote Control

    8. More buttons on the Remote Control

    9. Use the Remote Control to draw a white and black spiral

      	paint white
      	forward 1
      	right
      	forward 1
      	right
      	paint black
      	forward 2
      	right
      	forward 2
      	right
      	paint white
      	
      	...
      
      

    10. Keep going with this same pattern to get a large spiral, until you hit the walls

    11. Copy the commands from the Remote Control to the program area. Use right click and Select all

    12. Right click on the yellow and choose Copy

    13. Right click on the program area and choose Paint

    14. Run your new spiral program