| [ Home | Comics | Robots | Humans | Projects | About | Account ] | |
16 Jun 2002 pantera »
First lessons in building a Robot.
Note: Knowledge of Digital Electronics and Computer Organization desired when building and programming a robot.
First we start with an introduction to the Handy Board. It is a hand-held microcontroller board very well suited for personal and educational robotics projects. It contains:
Lab 1: The first lab consists of getting familiar with the
handy board. There are two ways to interact with the handy
board: first we install Interactive-C and write sample
programs, or secondly we directly download the *.S19 binary
files to the board (done by using the dl command) to
get familiar with its inner workings. Lab 2: We write test programs in Assembly to control two DC motors. They consist of writing modules for making the device move forward, backward and turn. We would like to be able to move the device few feet forward, having it turn around twice, and then go backward to its starting position. This is a sort of brute force method where we are in full control of what's going on. Later on we will go on further and try to automate the mobile device (Robot) as we start mounting sensors to it. Embedding AI into it is out of the picture for now. |