Button-activated Siren | Let's Start Coding | Coding for Kids

Button-Activated Siren

In this program, you use a variable to control the pitch of a speaker. By changing that variable very smoothly and quickly with code, you'll create a cool sound effect.

Code

1
2
/*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 

Challenges

How many can you complete? Change the code and hardware according to the challenges below. Upload your code to see the effect when you're finished. Complete a challenge? Check it off the list!

Videos

Read the Code Walkthrough Text (click to open)

Concepts

New Concept: Unknown Variable Value

Up to this point, you could probably figure out the value of your variables just by watching your programs run, even if you weren't looking at the screen. In this program, you see something different: variables that are changing quickly and somewhat automatically. 

This demonstrates the real power of a variable. It's a word that holds a value-sometimes a value you don't know. Now the program is doing work for you- taking your commands like 'add one to whatever you were before' and executing it. 

Quiz

If you're having trouble, try to run a program that can help you find the answer.

1. What is a different way to code variable = variable + 1; ?



2. In the button-activated siren example, what is the lowest value that the pitch variable can have?