Better Vid of my RN-1: RB-100, WinXP, .Net

Based on DMP's Vortex processor / SoC this board is a full computer capable of running a standard Windows and Linux installation on the backpack of your robot.
4 postsPage 1 of 1
4 postsPage 1 of 1

Better Vid of my RN-1: RB-100, WinXP, .Net

Post by PaulL » Sun Aug 05, 2012 10:56 am

Post by PaulL
Sun Aug 05, 2012 10:56 am

I bought a better camera. The one I had was about 11 years old, needed an upgrade.

This video is a bit nicer, and includes both linear interpolation of moves as well as moves driven by my accel / decel code.

phpBB [media]
I bought a better camera. The one I had was about 11 years old, needed an upgrade.

This video is a bit nicer, and includes both linear interpolation of moves as well as moves driven by my accel / decel code.

phpBB [media]
PaulL offline
Savvy Roboteer
Savvy Roboteer
Posts: 423
Joined: Sat Sep 15, 2007 12:52 am

Robonova Servo

Post by MOHIT JINDAL » Sun Aug 05, 2012 1:52 pm

Post by MOHIT JINDAL
Sun Aug 05, 2012 1:52 pm

Which camera you have now ? :twisted: 3 robonova 8) :lol: Can i control Hitec HSR servos with Robotis Cm510 ?
Which camera you have now ? :twisted: 3 robonova 8) :lol: Can i control Hitec HSR servos with Robotis Cm510 ?
MOHIT JINDAL offline
Savvy Roboteer
Savvy Roboteer
Posts: 178
Joined: Wed Nov 10, 2010 7:43 am

Post by PaulL » Mon Aug 06, 2012 12:09 am

Post by PaulL
Mon Aug 06, 2012 12:09 am

The other "Crappy" video was taken with a Logitech QuickCam Pro 4000. I bought a Microsoft LifeCam Cinema and used that for this vid. :) Windows Movie Maker for titles and such.

3 shown in the vid, but I have parts for 1 more! (red). Two "stock", two with all HSR-5498SG's (x20 servos each, 16 + 2 for hips + 2 for wrists). The goal is two w/ Roboards, two w/ MRC-3024's (one with Hitec gripper set, not installed at the moment).

I don't know much about the CM510...

In the vid, the bot is on a +5v PC power supply, so the servos don't have optimal power of 6v to 7.4v. It's easier to work with constant power than to worry about batteries for testing. Even still, I have not had any power problems since switching to the PC power supply.
The other "Crappy" video was taken with a Logitech QuickCam Pro 4000. I bought a Microsoft LifeCam Cinema and used that for this vid. :) Windows Movie Maker for titles and such.

3 shown in the vid, but I have parts for 1 more! (red). Two "stock", two with all HSR-5498SG's (x20 servos each, 16 + 2 for hips + 2 for wrists). The goal is two w/ Roboards, two w/ MRC-3024's (one with Hitec gripper set, not installed at the moment).

I don't know much about the CM510...

In the vid, the bot is on a +5v PC power supply, so the servos don't have optimal power of 6v to 7.4v. It's easier to work with constant power than to worry about batteries for testing. Even still, I have not had any power problems since switching to the PC power supply.
PaulL offline
Savvy Roboteer
Savvy Roboteer
Posts: 423
Joined: Sat Sep 15, 2007 12:52 am

Post by PaulL » Mon Aug 06, 2012 12:44 am

Post by PaulL
Mon Aug 06, 2012 12:44 am

I've mentioned this elsewhere, but more info:

* I'm running Windows XP on the RB-100.
* I'm not using MS Robotics Developer Studio.
* I'm not using RoboIO, I built my own hardware functions in Visual Studio VB .Net.
* I AM using WinIO.dll to access Roboard hardware from .Net.
* Servo hardware is using Continuous Mode for PWM.
* I use the Multimedia Timer for 4mS position updates.
* Moves in the vid were from the Robonova's stock program scaled to Roboard PWM values.
* Offsets / Trims are applied to position values for each servo using a .Net control.
* I'm using a Transcend Class 6 MicroSD card.

I'm not using Speed as a controlling factor, I'm using position and duration to perform a move. Speed is derived from moving from Start Position to End Position in Duration. This lets me plug in whatever calculation to get the current position based on fraction of the move (0 is start, 1 is end, between is position calculation). I created calculations for accel, decel, accel/decel, and linear interpolation. Part 1 of the vid is linear interpolation, Part 2 is a mix of the others. What this means is that it will be easier for me to adjust timing or style of moves (ex, dancing to an audio beat), or adjust for time-oriented real world scenarios. I even added the ability to generate an event at a specific time in the move (for things like starting other moves while another move is in action).

I should also mention, movement is not strictly "frame" based in the form of requiring all servos to be specified for a "frame". A move group (collection of movements) can be specified for any combination of servos. This means that I can implement one group move while another is already in progress. I also have single servo move capability, for working with dynamic things like object tracking and such. It also supports "instantaneous" moves, where you set a servo's position and instantly (within 4mS) the servo is set to the new position (Duration = 0).

The "flop" seen when he shifts to his left foot in the video is from backlash in the HSR-8498HB's. I am looking forward to seeing what the HSR-5498SG's can do (less backlash, metal gears). Visible "jitter" in slower motions is caused by low resolution in the Hitec servos (the smallest step in resolution of the servo is visible), solution is to move faster. :)
I've mentioned this elsewhere, but more info:

* I'm running Windows XP on the RB-100.
* I'm not using MS Robotics Developer Studio.
* I'm not using RoboIO, I built my own hardware functions in Visual Studio VB .Net.
* I AM using WinIO.dll to access Roboard hardware from .Net.
* Servo hardware is using Continuous Mode for PWM.
* I use the Multimedia Timer for 4mS position updates.
* Moves in the vid were from the Robonova's stock program scaled to Roboard PWM values.
* Offsets / Trims are applied to position values for each servo using a .Net control.
* I'm using a Transcend Class 6 MicroSD card.

I'm not using Speed as a controlling factor, I'm using position and duration to perform a move. Speed is derived from moving from Start Position to End Position in Duration. This lets me plug in whatever calculation to get the current position based on fraction of the move (0 is start, 1 is end, between is position calculation). I created calculations for accel, decel, accel/decel, and linear interpolation. Part 1 of the vid is linear interpolation, Part 2 is a mix of the others. What this means is that it will be easier for me to adjust timing or style of moves (ex, dancing to an audio beat), or adjust for time-oriented real world scenarios. I even added the ability to generate an event at a specific time in the move (for things like starting other moves while another move is in action).

I should also mention, movement is not strictly "frame" based in the form of requiring all servos to be specified for a "frame". A move group (collection of movements) can be specified for any combination of servos. This means that I can implement one group move while another is already in progress. I also have single servo move capability, for working with dynamic things like object tracking and such. It also supports "instantaneous" moves, where you set a servo's position and instantly (within 4mS) the servo is set to the new position (Duration = 0).

The "flop" seen when he shifts to his left foot in the video is from backlash in the HSR-8498HB's. I am looking forward to seeing what the HSR-5498SG's can do (less backlash, metal gears). Visible "jitter" in slower motions is caused by low resolution in the Hitec servos (the smallest step in resolution of the servo is visible), solution is to move faster. :)
PaulL offline
Savvy Roboteer
Savvy Roboteer
Posts: 423
Joined: Sat Sep 15, 2007 12:52 am


4 postsPage 1 of 1
4 postsPage 1 of 1
cron