Hitec servo 805BB damaged or not working?

Hi using arduino with this sketch, the servo seems working not properly, when I connect the PWM pin it goes to 180 very slowly and doesen’t move from that position.

[code]/* Sweep
by BARRAGAN http://barraganstudio.com
This example code is in the public domain.

modified 8 Nov 2013
by Scott Fitzgerald
http://www.arduino.cc/en/Tutorial/Sweep
*/

#include <Servo.h>

Servo myservo; // create servo object to control a servo
// twelve servo objects can be created on most boards

int pos = 70; // variable to store the servo position

void setup() {
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}

void loop() {
for (pos = 70; pos <= 110; pos += 1) { // goes from 0 degrees to 180 degrees
// in steps of 1 degree
myservo.write(pos); // tell servo to go to position in variable ‘pos’
delay(15); // waits 15ms for the servo to reach the position
}
for (pos = 110; pos >= 70; pos -= 1) { // goes from 180 degrees to 0 degrees
myservo.write(pos); // tell servo to go to position in variable ‘pos’
delay(15); // waits 15ms for the servo to reach the position
}
}
[/code]
Giving only current (+ and - from 6V AA battery package), it keep the psition correctly, problems starts when I connect the PWM pin. Tried to change wires, change software, and change pin.

What can I do? Can I return the motor and change it, if needed?

Trying this code, same problem


/* Sweep
by BARRAGAN <http://barraganstudio.com>
This example code is in the public domain.

modified 8 Nov 2013
by Scott Fitzgerald
http://www.arduino.cc/en/Tutorial/Sweep
*/

#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() {
myservo.attach(9);  // attaches the servo on pin 9 to the servo object
}

void loop() {

pos =90;
 myservo.write(pos); // tell servo to go to position in variable 'pos'
 delay(15);   // waits 15ms for the servo to reach the positionpos =70;
pos =70;    
 myservo.write(pos); // tell servo to go to position in variable 'pos'
 delay(15);    // waits 15ms for the servo to reach the position
pos =90;
 myservo.write(pos); // tell servo to go to position in variable 'pos'
 delay(15);    // waits 15ms for the servo to reach the position
pos =110;
 myservo.write(pos); // tell servo to go to position in variable 'pos'
 delay(15);    // waits 15ms for the servo to reach the position/

}
}

Got the same problem with the servo example

[code]
/* Sweep
by BARRAGAN
This example code is in the public domain.

modified 8 Nov 2013
by Scott Fitzgerald
http://www.arduino.cc/en/Tutorial/Sweep
*/

#include

Servo myservo; // create servo object to control a servo
// twelve servo objects can be created on most boards

int pos = 0; // variable to store the servo position

void setup() {
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}

void loop() {
for (pos = 0; pos <= 180; pos += 1) { // goes from 0 degrees to 180 degrees
// in steps of 1 degree
myservo.write(pos); // tell servo to go to position in variable ‘pos’
delay(15); // waits 15ms for the servo to reach the position
}
for (pos = 180; pos >= 0; pos -= 1) { // goes from 180 degrees to 0 degrees
myservo.write(pos); // tell servo to go to position in variable ‘pos’
delay(15); // waits 15ms for the servo to reach the position
}
} [/code]

Can anyone help me? where’s the technical support? :frowning:

We see you have also contacted us via the support center and will be replying to you there.