Terrapin Resources

Turtle Tuesdays Challenges for May 2024


Challenge No. 84 - May 7, 2024

for Logo users

Can you turn a few turtles into animals that each make their sound when you click them?
Here's some code to get you started!

TELL 0 SETSHAPE "~HOME/TOOLBOX/ANIMALS/ELEPHANT.PNG
PU SETXY [0 -100] SETH 0 ST
PPROP 0 "RUN [ASK 0 [PLAY "~HOME/SOUNDS/ELEPHANT REPEAT 20 [SETX XCOR - 2 WAIT 100]]]

To see a list of all available sounds, type: (DIR "~HOME/SOUNDS)


Challenge No. 85 - May 14, 2024

for Logo users

This is very similar to the April 2, 2024, challenge.
Just add one more REPEAT!

Challenge No. 86 - May 21, 2024

for Logo users

Can you play your phone number in musical notes?
For a challenge, add notes to show the pitches.

Challenge No. 87 - May 28, 2024

for Logo users

Can you create overlapping circles like the ones above?
Tip: When you set the pencolor, use a fourth input (for the alpha channel) that is less than 1, as in this example: SETPC [255 0 0 .5]