Home Page | Language Reference (extended) | SD Reference | Libraries | Comparison | Changes


Robot

setMode()

Description

Change the robot's mode. Depending on the mode it is currently in, the commands may change.

Syntax

Robot.setMode(modeName)

Parameters

modeName: Name of the mode you want to set the robot into.

Returns

none

Examples

#include <ArduinoRobot.h>
void setup ( ) {
  Robot.begin ( ) ;
  Robot.setMode (MODE_LINE_FOLLOW) ;
}
void loop ( ) { }

See also


Reference Home

Corrections, suggestions, and new documentation should be posted to the Forum.

The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.