Getting started with the Atmel AVR

Posted by Matthew Fri, 14 Apr 2006 20:58:00 GMT

There are two major microcontrollers in the hobby domain, the popular PIC and Atmel’s AVR line. PICs are tried and true in both commercial and hobby implementations, but the Atmel AVR offers affordable programming solutions, a free development environment, a free assembler and a stable gcc toolkit that work across the entire AVR line.

Various AVR microcontrollers

Read more...

Posted in  | Tags ,  | 9 comments

The NanoBot

Posted by Matthew Fri, 17 Feb 2006 03:55:00 GMT

While reading lugnet recently, I stumbled upon an extremely interesting little robot. It’s creator says it best:

While waiting for the NXT system to come out, I decided to try my luck at making tiny robots… Often, when working, I would drop a SMT and have to take a magnifying glass to find it as it would get lost in the bits of filings, etc that were around the work area…

Believe it or not, this little guy is a sumo robot. When he senses he’s found, he runs full speed for the edge of the rink!

The Nanobot with a LEGO

Posted in  | Tags  | no comments

Updating an LCD from an AVR controller

Posted by Matthew Fri, 03 Feb 2006 04:09:00 GMT

The good people over at E-DSP have churned out a comprehensive tutorial on how to use an lcd with your electronic devices. The Amtel AVR is their microcontroller of choice because of its cheap programmer. From pinouts to microcontroller code, they make it look easy. In a way it is.

AVR Microcontroller controlling an LCD

Posted in  | Tags  | no comments

16 Channel serial servo controller

Posted by Matthew Sat, 07 Jan 2006 15:23:00 GMT

Ever wonder exactly how to use a servo motor? How about 16 of them from a single serial connection?

Make Magazine’s Blog dug up an interesting way to accomplish this. To update servo positions, a host sends a serial signal to an Amtel microcontroller. The Amtel remembers the positions and generates 16 different control signals. (One signal for each servo). The data is sent as follows:

  • Byte1 = Sync (255)
  • Byte2 = Servo# (0-15)
  • Byte3 = Position (0-254)

The host is either the serial port of a computer or a single pin of a master microcontroller. Therefore, a PC program similar to his own can be used to find the exact servo positions necessary for the application before the code is embedded on a microcontroller in the robot.

Schematics and code are included. Other than that you are on your own.

Posted in  | Tags ,  | no comments