I have an issue in my robot that when I write a simple program as followin
#include “MeOrion.h”
#include <Wire.h>
#include <SoftwareSerial.h>
MeEncoderNew motor1(0x09, SLOT1); // Motor at slot1
void setup()
{
motor1.begin();
Serial.begin(9600);
}
void loop()
{
motor1.moveTo(360, 200);
delay(2000);
motor1.moveTo(0, 100);
delay(2000);
}
the robot moves tow motors together and in the program I have commanded one only to move ?