We made a Robotic Arm. This arm is unlike any other. It is programmed to take blocks from a chute and place them into a bin. We had some difficulties in programming this arm. The commands were mixed up and our arm procedure did not move the right direction. We solved this problem rather quickly. We found out that the problem was in a different procedure. When we completed this project it was very interesting. We plan on adding a light sensor which will detect which bin it should place each block. Below you will find the procedures we used in our project.
to place.distant
pick.from.chute
hand.close
talkto "motora
setright
on
waituntil [angle5 < -60 ]
off
Hand.open
end
to place.local
pick.from.chute
hand.close
talkto "motora
setright
on
waituntil [angle5 < -49 ]
off
hand.open
end
to pick.from.chute
talkto "motora
setleft
on
waituntil [angle5 > 0]
off
end
to hand.open
talkto "motorb
setleft
onfor 5
end
to hand.close
talkto "motorb
setright
onfor 5
end
to place.all
place.local
place.distant
place.local
end