This is a web page about a project I did in my computer class. I had to make a joystick and a wheelchair they both had different procedures. The joystick has less procedures so I didn't have to type as much. The wheel chair was a lot more complacated it took two days to build and the procedures were a lot longer so it took me a long time to type. The joystick controls the wheelchair and tells it to go left or right.
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 motorb]
setleft onfor 10
end
to right
talkto [motora motorb]
setright onfor 10
end
to joystick
if angle6 > 1 [forward]
if angle6 < -1 [back]
if angle5 > 1 [left]
if angle5 < -1 [right]
end
to start
forever [joystick]
end