Hi! My name is Natalie. I am building with Legos and programming them with the Logo software that comes with the Control Lab Lego kits. I built a wheelchair that can go forward, backward, left, and right. First, I had to build the joystick that I would later program to control the wheelchair; it included two angle sensors with wires. After I finished the joystick, I started building the wheelchair itself. The wheelchair includes two motors and several wheels and gears that help it move in different directions. The main wheel is able to rotate and go in the direction that the programmed joystick tells it to. Once the wheelchair and joystick were finished, I connected the motor and angle sensor wires to a control station and started programming the wheelchair. I had to figure out which motors and commands made the wheelchair go left or right, forward or backward. Then I could write procedures to command the wheelchair. Once all of these procedures were finished, I programmed the joystick and tested the wheelchair with it.
Below is a picture of the Lego project and the procedures.
TO FORWARD
TALKTO "MOTORA
SETLEFT
TALKTO "MOTORB
SETRIGHT
TALKTO [MOTORA MOTORB]
ONFOR 10
END
TO BACKWARD
TALKTO "MOTORA
SETRIGHT
TALKTO "MOTORB
SETLEFT
TALKTO [MOTORA MOTORB]
ONFOR 10
END
TO LEFT
TALKTO "MOTORA
SETLEFT
TALKTO "MOTORB
SETLEFT
ONFOR 10
END
TO RIGHT
TALKTO "MOTORA
SETRIGHT
TALKTO "MOTORB
SETRIGHT
ONFOR 10
END
TO JOYSTICK
IF ANGLE6 > 1 [FORWARD]
IF ANGLE6 < -1 [BACKWARD]
IF ANGLE5 > 1 [RIGHT]
IF ANGLE5 < -1 [LEFT]
END
TO WHEELCHAIR
FOREVER [JOYSTICK]
END