This is a web page about a project I did in my computer class. I had to make a wheelchair and joystick out of legos and then program them to move. It took a while to build the wheelchair because there were some pieces missing. After I finished building it I plugged the Lego wheelchair and joystick into the computer and programmed the wheelchair to move and the joystick to control it. Below is a picture of the wheelchair and joystick and the procedures I used.
to forward
talkto "motora
setleft
talkto "motorb
setright
talkto [motora motorb]
onfor 10
end
to back
talkto "motora
setright
talkto "motorb
setleft
talkto [motora motorb]
onfor 10
end
to left
talkto "motora
setleft
onfor 10
end
to right
talkto "motorb
setright
onfor 10
end
to joystick
if angle5 > 1 [forward]
if angle5 < -1 [back]
if angle6 > 1 [right]
if angle6 < -1 [left]
end
to start
forever [joystick]
end