Lunar Regolith Excavation Challenge 

Well, I decided to take the plunge and enter this contest with only one month until the competition... Here is a link to the information site.

This is a NASA sponsored contest to create a machine that can excavate lunar soil to be processed, one process being removing breathable oxygen from the soil.

One key reason that I decided to enter is that the competition takes place about 15 miles from my house; I couldn't pass up the opportunity! It doesn't hurt to have a total purse of $250,000 available, but in reality, the most value will be from all of the people that I will meet at that time.

This particular challenge involves moving simulated lunar soil from a 4 meter square sandbox into a 1 meter square collection box. The machine that moves the most material, over 150kg, wins first place. Oh yea, did I mention that you get 30 watts of power for 30 minutes to do this?

I don't want to say much yet about my design approach, but I will say that I have a prototype machine that already digs pretty well, and there is plenty of time to work out the details.

More later...
[ 400 comments ] ( 7081 views ) ( 3 / 319 )
Simple State Machine in C 

Over the past few years I have been reading about UML Statecharts and state machines in general, but never found a construct that I liked for small embedded systems. Most designs have some events being fired from outside processes, but in most of the stuff I do the event processing belongs inside of the state machine itself!

I created some macros in C that make it very easy to create a state machine that supports entry actions, transaction testing, and exit actions, all living inside the same case statement, making it very simple to understand and maintain.

It will be very clear what is going by viewing this example . However, I should explain the meaning of the "_EXCLUSIVE" macros...

With the entry action, transition test, and exit actions all inside the same case statement, the default is to execute them in order, potentially finishing all three in a single call. This might be good in some cases, but causes problems when expecting predictable timing through the state machine.

The "Exclusive" versions of the macros only allow one of the three parts of a state to be performed each time in. This means it will always take at least three calls to the state machine to pass through a state.

Try it out, and have fun...
[ 208 comments ] ( 3283 views ) ( 3 / 370 )
Robot manipulator arms... 

I stumbled upon a very good book about robotics called Robot Modeling and Kinematics , by Rachid Manseur. It is completly about modeling robot arms, and nothing about navigation, etc.

One of the neatest things is that it comes with a bunch of programs that create VRML files to simulate robot arms according to parameters you specify. You run the program, type in some specifications for an arm design, and you can view the resulting animated simulation in your web browser. It uses tons of matrix math, which I don't know much about, but it actually is a fun way to learn about matrix math...;-)

For the FIRST Robotics competition this year, my team used a very simple, one joint robot arm. It worked well, and I don't think I would change it, except perhaps to add a single-axis wrist. I was able to model our arm very easily using the programs that came with the book, and this will help with future designs of robot arms...

I'm actually glad that I didn't find this book until after the FIRST build season; no telling what I would have suggested for out robot after seeing the cool ideas in the book.

One more thing, there are a number of mistakes in the book, but you can download an errata file from the publisher's web site here.

I will post more as I get into modeling robot arms...

[ 169 comments ] ( 779 views ) ( 3 / 331 )
Build season is over... 

I hope that all of the FIRST team memebers reading this had a successful build season, and my best wishes for competition.

I obviously never posted any code to run the DOS chip thing from the robot controller. Hopefully there was enough information posted so that someone could get it running an an RC. I would love to hear from anyone who has run the chip.

I will do some more work on this, and it will definately be ready for next year!

Jim

[ 149 comments ] ( 620 views ) ( 2.9 / 426 )
DOS Chip Update... 

Actually, I don't have too much to update, I have been totally swamped with the FIRST Robotics programming challenge.

Next week I hope to integrate the DOS chip with the IFI robot controller, so I will post the new code at that time.

Jim

[ 147 comments ] ( 332 views ) ( 3 / 348 )

<<First <Back | 1 | 2 | 3 | 4 | Next> Last>>