1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-13 23:48:46 +01:00
Arduino/libraries/Robot_Control/examples/learn/MotorTest/MotorTest.ino

44 lines
827 B
Arduino
Raw Normal View History

2013-05-15 10:47:17 +02:00
/*
Motor Test
2013-05-15 10:47:17 +02:00
Just see if the robot can move and turn.
2013-05-15 10:47:17 +02:00
Circuit:
* Arduino Robot
2013-05-15 10:47:17 +02:00
created 1 May 2013
by X. Yang
modified 12 May 2013
by D. Cuartielles
2013-05-15 10:47:17 +02:00
This example is in the public domain
*/
#include <ArduinoRobot.h>
#include <Wire.h>
#include <SPI.h>
2013-05-15 10:47:17 +02:00
void setup() {
// initialize the robot
Robot.begin();
}
void loop() {
Robot.motorsWrite(255, 255); // move forward
2013-05-15 10:47:17 +02:00
delay(2000);
Robot.motorsStop(); // fast stop
delay(1000);
Robot.motorsWrite(-255, -255); // backward
2013-05-15 10:47:17 +02:00
delay(1000);
Robot.motorsWrite(0, 0); // slow stop
2013-05-15 10:47:17 +02:00
delay(1000);
Robot.motorsWrite(-255, 255); // turn left
2013-05-15 10:47:17 +02:00
delay(2000);
Robot.motorsStop(); // fast stop
delay(1000);
Robot.motorsWrite(255, -255); // turn right
2013-05-15 10:47:17 +02:00
delay(2000);
Robot.motorsStop(); // fast stop
delay(1000);
}