Hi, my name is Joshua. I did a project with Legos. First you have to build the object, to make the object move around. All the Legos to build the object are in a box separated. The rest is up to you. When I finished building the wheel chair and joystick, I used wires to connect them to the computer. I made my wheel chair move by telling it to move right, left, forward, and backward. I also controlled the wheel chair with my joystick. One problem I had when building the wheel chair is that some parts were missing and I had to use the spare parts section. I also had to get some different color parts to make the wheel chair work, but it still worked right. This was a fun experience.
Below is a picture and the progamming.
to forward
talkto "motora
setright
talkto "motorb
setleft
talkto [motora motorb]
onfor 10
end
to back
talkto "motora
setleft
talkto "motorb
setright
talkto [motora motorb]
onfor 10
end
to right
talkto "motora
setleft
talkto "motorb
setleft
talkto [motora motorb]
onfor 10
end
to left
talkto "motora
setright
talkto "motorb
setright
talkto [motora motorb]
onfor 10
end
to joystick
forever [check]
end
to check
if angle5 > 1 [forward]
if angle5 < -1 [back]
if angle6 > 1 [right]
if angle6 < -1 [left]
end