problem servomotors power

Hello,

I have built a bipedal robot
Each leg is powered with two Hs 755 mg

For this systeme i'm using a 20 m2
and the power supply is a laboratory one which delivers 9v and 1.5 A

During the first 15 seconds all is working but after a very short time servomotors have less and less power
and they stop moving

???P1000774.JPGP1000774.JPG
 

BeanieBots

Moderator
Without a diagram it is impossible to help.
9v is too high for most 'hobby' servos, so if your are giving them 9v they are probably dying from stress!
Do they get hot as well?
 
Ok
the diagramm isin the attachements
and here the program:
Code:
; *******************************
; ***** Sample Header File  *****
; *******************************
;    Filename: 		
;    Date: 			
;    File Version: 	
;    Written by: 		
;    Function:		
;    Last Revision:
;    Target PICAXE:	
; ******************************* 


init:
servo B.4,150
 servo B.3,150
servo B.2,225
 servo B.1,225


main:

for b0 = 70 to 0 step -5
b1= 150 + b0
b2= 225 + b0
pause 10
 servo B.4,b1
 servo B.3,b1
servo B.2,b2
 servo B.1,b2
 pause 50
 next b0
 
 for b0 = 0 to 70 step 5
b1= 80 + b0
b2= 155 + b0
pause 10
 servo B.4,b1
 servo B.3,b1
servo B.2,b2
 servo B.1,b2
 pause 50
 next b0
 
goto main
cablage.JPG
 
Last edited by a moderator:

russbow

Senior Member
I am not sure it has anything to do with your problem, but all the servo commands in your main program should be changed to servopos.

Manual 2, page 213
 
I have ever tried to use servo instead of servopos on an another robot and it's working perfectly
In this case, it looks like, something is wrong on the diagramm circuit
 

nick12ab

Senior Member
It looks like one of those cheap crappy power supplies that just select between tap-offs on a transformer. These are unregulated and that power supply could be outputting over 10V on idle even though it's set to 7.5V. It might also has too small a capacitor for the purpose - try adding one of around 470uF. Don't forget 100nF decoupling capacitor on the PICAXE.
 

boriz

Senior Member
Try with 4 new AAs (6v) power for the servos. It will help eliminate the PSU as the culprit.
 

boriz

Senior Member
Also. Can you monitor the voltage at the servos using a multimeter? Does the voltage drop when the servos slow?
 
should i put the 4700 capacitor like in this diagramm?
cablage2.JPG
I don't have multimeter to check the tension but i will try tomorow at work
 
Top