Hi! Our names are Syd and Jon. We are building with Legos and programming them with the Logo software that comes with the Control Lab Lego kits. Jon built the wheelchair using Legos with holes in them, two motors, gears, wheels, rubber bands, and plastic rods. Syd built the joystick using Lego parts to make a handle and a base. He put two angle sensors to sense motion to the left or right, and foward or backward motion. We programmed the computer to interpret the movements of the joystick as left, right, forward, or back. We then programmed the wheelchair motors to actually go forward, back, left, and right when the joystick is moved in that corresponding direction.
Below is a picture of the Lego project and the procedures used to make it work.
to joystick
if angle5 > 1 [forward]
if angle5 < -1 [backward]
if angle6 > 1 [right]
if angle6 < -1 [left]
end
to forward
talkto "motora setleft
talkto "motorb setright
talkto [motora motorb]
onfor 10
end
to backward
talkto "motora setright
talkto "motorb setleft
talkto [motora motorb]
onfor 10
end
to right
talkto [motora motorb] setright
onfor 5
end
to left
talkto [motora motorb] setleft
onfor 5
end
to wheelchair
forever [joystick]
end