When i try to compile, the following comes up. is there a reason it comes out?
Arduino: 1.6.7 (Windows 9), Board: "Arduino/Genuino Uno"
arduino.robot:5: error: 'Servo' does not name a type
Servo servoLeft;
^
arduino.robot:6: error: 'Servo' does not name a type
Servo servoRight;
^
arduino.robot:13: error: 'servoLeft' was not declared in this scope
servoLeft.attach(10);
^
arduino.robot:14: error: 'servoRight' was not declared in this scope
servoRight.attach(9);
^
arduino.robot:24: error: 'servoLeft' was not declared in this scope
servoLeft.write(forward);
^
arduino.robot:25: error: 'servoRight' was not declared in this scope
servoRight.write(backward);
^
arduino.robot:54: error: expected ';' before 'delay'
delay(1500);
^
exit status 1
'Servo' does not name a type
This report would have more information with
"Show verbose output during compilation"
enabled in File > Preferences.