Ethan and I, (my name is Chris), constructed a "vending machine" from Legos. We could have used a sound generator but the sound was really annoying. Anyways, you put in a colored lego (blue or yellow), then you push the touch sensor, and out pops a lego that color. To sort the color, we installed a light sensor. Building it wasn't complicated and it was fun.
Below is a picture and the programming.
to yellow
talkto [motorb lampd soundc]
setright
onfor 80
end
to blue
talkto [motora lampe soundc]
setright
onfor 80
end
to coin
[touch1]
tto "lampf onfor 20
check.color
coin
end
to check.color
if light8 >= 50 [yellow]
if and light8 >= 43 light8 < 50 [blue]
end
to coin2
check.color
end
to coin3
check.color2
end
to check.color2
if light8 >= 50 [blue]
if and light8 >= 34 light8 < 50 [yellow]
end