So my professor gave me a program to upload to my arduino, and I received these errors. What am I doing wrong? It looks exactly like the one he gave us to upload, I have checked it numerous times.
sketch_sep27c.cpp:1:18: error: Servo.h: No such file or directory
sketch_sep27c:2: error: 'Servo' does not name a type
sketch_sep27c.cpp: In function 'void setup()':
sketch_sep27c:5: error: 'myservo1' was not declared in this scope
Changing "#include<Servo.h>" to "#include <Servo.h>" (adding the space) fixes the compile error if you have Servo.h in the appropriste folder for the IDE to find it.