Boa noite. Estou tentando posicionar o Servo Motor na posição 0, porém sempre que tento fazer isso ele fica travado e fazendo um barulho como se estivesse forçando o motor, pode ser algum problema com o servo motor?? Como não chegaram os outros servo motores, só tenho esse para testes. Segue o código:
#include <Servo.h>
Servo myservo; // create servo object to control a servo
// twelve servo objects can be created on most boards
int pos = 90; // variable to store the servo position
void setup() {
Serial.begin(9600);
myservo.attach(9); // attaches the servo on pin 9 to the servo object
myservo.write(pos);
Serial.print(pos);
Serial.println(" Graus");
}
void loop(){}