Hi, our names are Jose and Bryan. We joined Mr. St Clair's Lego class to make a Lego project. Our Lego project is called "The Robotic Arm". The Robotic Arm makes an arm move to a chute and picks up blocks. Then it drops the blocks in the the basket and goes for the next block in the chute. There are two motors, one motor turns it around and the other closes the arm. Some problems we went through is we had put some parts in the wrong place. We then had to take away lots of parts just to put a block in the right place. Or other times we didn't put it in all the way. We then had to plug in some flat blocks on to a pad. We then had to test the arm to make sure if they're in the right place. Next we wrote the procedures to make it pick up the blocks automatically. In case we messed up we had a stop button so the arm won't hit something.
In the robotic arm project we then added a color sensor. The color sensor scans the Lego block and sorts it by color. One bin is for red while the other one is for blue. To do this we had to write more procedures. In this process we made a lot more mistakes than we had in building it. Like when it picked up a block, it hit the sensor so we put the chute higher. It still hit the sensor. The mouse pad was under the plate the sensor was on. We moved the mouse pad so then it worked. We also spelled some commands wrong and had to fix them.
Below is a picture and the programing.
to place.distant
pick.from.chute
hand.close
talkto "motora
setright
on
waituntil [angle5 < -63]
off
hand.open
end
to place.local
pick.from.chute
hand.close
talkto "motora
setright
on
waituntil [angle5 < -52]
off
hand.open
end
to pick.from.chute
talkto "motora
setleft
on
waituntil [angle5 > 0]
off
end
to hand.open
talkto "motorb
setright
onfor 2.5
end
to hand.close
talkto "motorb
setleft
onfor 5
end
to place.all
place.local
place.distant
place.local
end
to place.by.color
pick.from.chute
hand.close
talkto "motora
setright
on
waituntil [angle5 = -20]
off check.color
end
to check.color
if light8 >= 42 [red]
if light8 <= 42 [blue]
end
to blue
talkto "motora
setright
on
waituntil [angle5 = -47]
off
hand.open
end
to red
talkto "motora
setright
on
waituntil [angle5 = -58]
off
hand.open
end
to go
repeat 4[place.by.color]
end