Hi, my name is Jesse. I got to make a robotic arm. It was very fun to build and program. I had to type procedures so the robotic arm could work. I had to calculate many numbers so it will work perfectly. I used PICK.FRROM.CHUTE, PLACE.DISTANT, and MOTORA and MOTORB to program it. It took about 3 hours to finish. At first I had to build the base, then the arm. The base and the arm have their own motor. The base needs the motor to spin the arm, the arm needs the motor to open and close the hand to grab an object. After that I typed the procedures. Once I got it to work I put in a light sensor, the sensor made the arm put the blocks according to their color into a certain bin. At the end it turned out perfect, and I had a lot of fun. The best and funnest part was playing with it.
Below is a picture and programming. The picture shows the arm stopping over the light sensor.
to place.distant
pick.from.chute
hand.close
talkto "motora
setright
on
waituntil [angle5 < -62]
off
hand.open
end
to place.local
pick.from.chute
hand.close
talkto "motora
setright
on
waituntil [angle5 < -50]
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 = -27]
off check.color
end
to check.color
if light6 > 46 [red]
if light6 < 40 [blue]
end
to blue
talkto "motora
setright
on
waituntil [angle5 = -50]
off
hand.open
end
to red
talkto "motora
setright on waituntil [angle5 = -61]
off
hand.open
end
to go
repeat 3[place.by.color]
end