We made a wheelchair and named it the Handy Dandy Wheelchair! We didn't only make a wheelchair, we also made a joystick to move it. After we hooked up the wheelchair and the joystick to the computer, we made a set of proceedures. We had to make proceedures for each direction; right, left, forwards and backwards. Then we could move the wheelchair any direction just by moving the joystick in the direction we wanted. We had a lot of fun playing with it. It originally just moved around, but we added lights that could go on and off and other interesting stuff. It was a handy...dandy...wheelchair!
*Below is a picture & the programming.
to forward
talkto [motora motorb lampf]
setright
onfor 10
end
to back
talkto [motora motorb lampf]
setleft
onfor 10
end
to left
talkto "motora
setleft
talkto "motorb
setright
talkto [motora motorb lampf]
onfor 10
end
to right
talkto "motora
setright
talkto "motorb
setleft
talkto [motora motorb lampf]
onfor 10
end
to joystick
if angle6 > 1 [forward]
if angle6 < -1 [back]
if angle5 > 1 [right]
if angle5 < -1 [left]
end
to control
forever [joystick]
end