This is a web page about a project that I made in my computer class. I made a basketball hoop and a catapult to shoot the ball in the hoop. I made the catapult work but, the hoop doesn't. The hoop is supposed to have lights when the catapult makes a basket but the lights don't do what we want them to. Sometimes they don't turn on and sometimes they keep flashing and don't want to stop. Below is a picture and the procedures that I wrote:
to throw
athisway
asetpower 7
cthisway
csetpower 7
aon con wait 10 aoff coff
athatway
asetpower .5
aonfor 10
end
to light
if sensor1 < 33 [aon con wait 5 aoff coff]
light
end
to basket
loop [light]
end
Then I tried using the reflect command instead of the sensor command and the result was the same. The lights would come on if I put my finger over the light sensor but not when the ball went in the basket. The reading for my finger was 48-50, 39-41 for the ball, and 30-35 for nothing in the basket. Below are the procedures that I tried:
to throw
athisway
asetpower 7
cthisway
csetpower 7
aon con wait 10 aoff coff
athatway
asetpower .5
aonfor 10
end
to light
ifelse reflect1 = 1 [aoff coff] [aon con wait 10 aoff coff]
end
to basket
loop [light]
end