Hi! My name is Cynthia. I am taking an after school GATE class. I am building with Legos and programming them with the Logo software that comes with the Control Lab Lego kits. I chose to do a house. First I had to build the house (obviously). My goals were to make the garage door open as soon as the toy car came on the "driveway." In order to do that I had to program it. I had to type in some procedures. First I had to make the garage door open, for 10 units of time. Second I programmed it to close for 8 units of time. It took less time to close the garage door because of gravity pulling the door down. Third I programmed the garage door to open while the light had to turn on. So as soon as the car came, the light turned on and the garage would open for about 10 seconds, then it would automatically close. At the end It worked, but on the way I had a problem. At first the wire connected to output A didn't work so we tried changing the light bulb, that didn't work. Then we changed the wire, which didn't work either. So after the second time we tried a third different wire and it finally worked! In conclusion making the house was lot of fun despite the fact I had to rebuild it twice to fit the motor on the platform. :( Below are 2 pictures of the house, and the procedures.
TO OPEN
TALKTO "MOTORC
SETLEFT
ONFOR 10
END
TO CLOSE
TALKTO "MOTORC
SETRIGHT
ONFOR 8
END
TO DOOR
TALKTO "LAMPA ON
OPEN
WAIT 50
CLOSE
TALKTO "LAMPA
OFF
END
TO GARAGE
TALKTO "LAMPB
ON
IF LIGHT5 < 80 [DOOR]
GARAGE
END