Hi Our Names are Seth and Jamie. We are taking an after school Lego class at Vina Danks Middle School in Ontario, California. We are building with Legos and programming them with the Logo software that comes with the Control Lab Lego kits. The project that we did with Legos was a wheelchair that was powered by a joystick. It has 2 small wheels and 2 big wheels so it won't drag. First we made it with 6 small wheels, but it was dragging on the ground. It has 2 motors that control the 2 big wheels to go forward, backwards, left, and right. Our wheelchair can carry a lot of Lego people so if you have Lego people, you can come over to Vina Danks middle school, then go to Mr. St. Clair's class afer school and we will give your Lego people a joyride. For the joyride, there is a racing course we created with tape on the rug. We tested this course with the small and the big wheels. Our time with the small wheels was 1:44 and our time with the big wheels was 55 seconds.
Below are 2 pictures of the Lego project and the procedures. The first picture is a picture of it with the 6 small wheels. The second picture is with the big wheels.
to go
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]
setright
onfor 10
end
to right
talkto [motora motorb]
setleft
onfor 10
end
to joystick
if angle6 < -1 [go]
if angle6 > 1 [back]
if angle5 < -1 [right]
if angle5 > 1 [left]
end
to start
forever [joystick]
end