I have been using one of those small blue servos(with the picaxe 28x starter kit), after about 30 minutes of usage the servo stopped working. I thought I may have damaged it somehow, so I used another new servo (same type), but it didn't work!, I tried all the blue servos I have and non worked.
I second this. Depending on how much work the servo is doing, you can burn through batteries pretty quickly. What type of battery setup are you currently using and if not rechargables, I highly recommend investing in some.
The servo was working fine at first, then suddenly it stopped and all the servos I used after didn’t work. Its like the picaxe chip dosen’t respond to the servo command.
Can you try adding an led to your setup and verify that the code is executing? the below code should do just that.
'define some constants and vars symbol LedPin = 4 ’ use whatever pin you want symbol ServoPin = 3 symbol WaitTime = 800 'give the servo some time to move. servo ServoPin, 75 'initialize servo pin and position
low LedPin ’ make sure the led pin is low to start.
pause WaitTime ’ add a small delay before the loop
main: high LedPin servopos ServoPin, 75 ’ should use servopos instead of servo for all calls after init of servo pin low LedPin pause WaitTime high LedPin servopos ServoPin, 225 low LedPin pause WaitTime goto main