Pan and tilt on a 5710 using RQ servos

Korean company maker of Robot kits and servos designed for of articulated robots. Re-incarnation of Megarobotics.
2 postsPage 1 of 1
2 postsPage 1 of 1

Pan and tilt on a 5710 using RQ servos

Post by l3v3rz » Fri Aug 16, 2013 8:52 pm

Post by l3v3rz
Fri Aug 16, 2013 8:52 pm

Its incredibly easy to add these new RQ servos to make pan and tilt head for your 5710/20 Huno.

The RQ bracket screw in directly to where the standard head fit . Connect servo on to bracket with nut and bolts provided. Then add a second servo using the snap together connectors. Finally use the split cables to plug into the spare socket on the RBC controller. Done !

In this picture I've then added a stripped down webcam (Microsoft VX-1000) - which is held in place by second bracket and a bit tape. Its USB is then connected into the Omnima board - perfect !!

See picture

Image

Finally here's a bit of Robobuilder BASIC code to control it - sweet !

Code: Select all
List Program
5 PRINT "type: w,a,s,z,q"
8 LET P =  SERVO(22)
11 LET Q =  SERVO(24)
14 LET G =  5
17 LET H =  5
20 PRINT "P=",P,"Q=",Q
23 LET K =  $KBD
26 PRINT K
29 IF  K=113 THEN 71
32 IF  K=115 THEN 35 ELSE 38
35 LET P =  P+H
38 IF  K=97 THEN 41 ELSE 44
41 LET P =  P-H
44 IF  K=119 THEN 47 ELSE 50
47 LET Q =  Q+G
50 IF  K=122 THEN 53 ELSE 56
53 LET Q =  Q-G
56 SERVO 22=P
59 SERVO 24=Q
62 ! IMAGE LOAD 32
65 ! IMAGE SHOW 6
68 GOTO 8
71 SERVO 22=@
74 SERVO 24=@
77 END
Its incredibly easy to add these new RQ servos to make pan and tilt head for your 5710/20 Huno.

The RQ bracket screw in directly to where the standard head fit . Connect servo on to bracket with nut and bolts provided. Then add a second servo using the snap together connectors. Finally use the split cables to plug into the spare socket on the RBC controller. Done !

In this picture I've then added a stripped down webcam (Microsoft VX-1000) - which is held in place by second bracket and a bit tape. Its USB is then connected into the Omnima board - perfect !!

See picture

Image

Finally here's a bit of Robobuilder BASIC code to control it - sweet !

Code: Select all
List Program
5 PRINT "type: w,a,s,z,q"
8 LET P =  SERVO(22)
11 LET Q =  SERVO(24)
14 LET G =  5
17 LET H =  5
20 PRINT "P=",P,"Q=",Q
23 LET K =  $KBD
26 PRINT K
29 IF  K=113 THEN 71
32 IF  K=115 THEN 35 ELSE 38
35 LET P =  P+H
38 IF  K=97 THEN 41 ELSE 44
41 LET P =  P-H
44 IF  K=119 THEN 47 ELSE 50
47 LET Q =  Q+G
50 IF  K=122 THEN 53 ELSE 56
53 LET Q =  Q-G
56 SERVO 22=P
59 SERVO 24=Q
62 ! IMAGE LOAD 32
65 ! IMAGE SHOW 6
68 GOTO 8
71 SERVO 22=@
74 SERVO 24=@
77 END
l3v3rz offline
Savvy Roboteer
Savvy Roboteer
Posts: 473
Joined: Fri Jul 18, 2008 2:34 pm

Post by l3v3rz » Sat Aug 17, 2013 8:21 pm

Post by l3v3rz
Sat Aug 17, 2013 8:21 pm

More photo on facebook site https://www.facebook.com/robert.walker.1690

And Video at

[media]//www.youtube.com/watch?v=P3hqA1ygYA8[/media]
More photo on facebook site https://www.facebook.com/robert.walker.1690

And Video at

[media]//www.youtube.com/watch?v=P3hqA1ygYA8[/media]
l3v3rz offline
Savvy Roboteer
Savvy Roboteer
Posts: 473
Joined: Fri Jul 18, 2008 2:34 pm


2 postsPage 1 of 1
2 postsPage 1 of 1
cron