Hi,
i am working on the Lesson4 Obstacle Avoidance Car project now.
i downloaded Servo_Debug and uploaded it into my UNO.
But the servo motor is still keep rotarying.
#include <Servo.h>
Servo myservo;
void setup(){
myservo.attach(1);
myservo.write(90);// move servos to center position -> 90°
}
void loop(){
}
Please help!
Sam