Hi, we are Aaron and Keyur. We built a 3-wheeled car and a joystick with lego people out of, you guessed it, legos. We programmed it using Yellow Brick Logo on a Power Macintosh G3. We transfered the procedures via an infrared signal, originating from an infrared transmitting tower, to the RCX yellow brick lego. We had a few setbacks in the construction of our lego vehcle. The list is as follows:
1. We originally started with a 5-wheeler.
2. We added pneumatic risers and two more wheels.
3. We took the pneumatic risers out and took 4 wheels out because it kept falling apart.
4. We made a lot of changes so it could run properly.
5. We couldn't make the joystick work correctly. The joystick only worked for a minute or so then it went out of adjustment. Then only one direction worked. We could not control it after that.
Below is an image and the programing, feel free to look at other projects.
to drive
resetc1
resetc3
launch [joystick]
end
to joystick
loop [
if counter1 > 1 [forward]
if counter1 < -1 [back]
if counter3 > 1 [right]
if counter3 < -1 [left]
]
end
to back
ac, setpower 6
a, thatway
c, thisway
ac, onfor 5
end
to forward
ac, setpower 8
a, thisway
c, thatway
ac, onfor 5
end
to left
ac, setpower 8
c, thatway
onfor 5
end
to right
ac, setpower 8
a, thisway
onfor 5
end