Home Page | Language Reference (extended) | SD Reference | Libraries | Comparison | Changes
Change the robot's mode. Depending on the mode it is currently in, the commands may change.
Robot.setMode(modeName)
modeName: Name of the mode you want to set the robot into.
none
#include <ArduinoRobot.h>
void
setup
(
)
{
Robot.begin
(
)
;
Robot.setMode
(MODE_LINE_FOLLOW)
;
}
void
loop
(
)
{
}
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.