This is a webpage about a project I made in my computer class. First I built a Lego conveyor belt and programmed it. Then, I made a robotic arm and programmed it. When I was done making each one I combined them and made the arm pick up Legos from the conveyor belt. It was hard getting the conveyer belt to stop at the exact right place so the arm could pick it up, so I used the light sensor to see when the Legos were in the right place. Below is a picture of the project and the procedures I wrote:
to place.distant
pick.from.chute
hand.close
talkto "motora setright
on
waituntil [angle5 < -35]
off
hand.open
end
to place.local
pick.from.chute
hand.close
talkto "motora setright
on
waituntil [angle5 < -23]
off
hand.open
end
to pick.from.chute
talkto "motora setleft
on waituntil [angle5 > 0]
off
end
to hand.open
talkto "motorb setleft
onfor 2.5
end
to hand.close
talkto "motorb setright
onfor 5
end
to place.all
place.local
place.distant
place.local
end
to check.color
if light8 >= 38 [yellow]
if light8 <= 38 [blue]
end
to place.by.color
pick.from.chute
hand.close
check.color
end
to blue
talkto "motora setright
on
waituntil [angle5 = -32]
off
hand.open
end
to yellow
talkto "motora setright
on
waituntil [angle5 = -21]
off
hand.open
end
to go
talkto "motord setright
on
waituntil [light8 >= 33]
onfor 14
off
place.by.color
go
end