Hi, are names are Diana, Ben, and Tasha. We built a wheel chair out of Legos. Our friends helped us make a person to go on the wheel chair. After we made the wheel chair, we had to program it into the computer. We had to make seperate procedures to make it move forward, backward, right, and left. After we programed the procedures, we had to make another procedure to make the joystick move the wheel chair itself. Then we were able to play with the wheel chair. That was the best part of the project. We didn't have many problems with it. Though, when we were programing it, it went left instead of right because we put the procedures in backwards.
Below is a picture and the programing.
to forward
talkto "motora
setright
talkto "motorb
setleft
talkto [motora motorb]
onfor 10
end
to backward
talkto "motora
setleft
talkto "motorb
setright
talkto [motora motorb]
onfor 10
end
to right
to joystick
to check
talkto "motora
setleft
talkto "motorb
setleft
talkto [motora motorb]
onfor 10
end
talkto "motora
setright
talkto "motorb
setright
talkto [motora motorb]
onfor 10
end
forever [check]
end
if angle6 > 1 [forward]
if angle6 < -1 [backward]
if angle5 > 1 [left]
if angle5 < -1 [right]
end