This tutorial will show you one possible way you can use the programmable microcontroller—to visualize music! When triggered the LEDs will light up in order corresponding to the notes of a very basic piano song- “Hot Cross Buns.”
You will need:
- An In System Programmer (ISP) to connect the microcontroller sticker to the computer and load your code, such as:
- Tiny AVR programmer this programmer is easiest to start with. It also has a convenient connector for easily programming bare Attiny85 microcontrollers
- AVRISP MKII this can be used to program any sort of AVR microcontroller
- Arduino as programmer If you have an Arduino handy, you can also use it as a programmer. To do so, you will first need to program your Arduino board as a programmer. Here are tutorials for turning the Arduino UNO and Arduino Leonardo into ISPs. For the Arduino UNO, you will also need a 10uF or larger capacitor.
- Microcontroller circuit sticker (in the Sensors add-on)
- Circuit sticker programming adapter (also included in the Sensors add-on)
- 6 jumper wires
- 3 LED stickers
- Copper foil tape
- Cardstock
- 3V coin cell battery
- Black marker
- Binder clip
Step 1. See “Programming the Microcontroller Sticker” to learn how to set up your microcontroller and computer to begin coding.
Step 2. Plan the circuit you want to create. I first used a separate piece of paper to sketch out the piano keys and where the microcontroller would be placed.
Step 3. Draw in the locations of the LEDs, copper foil, touch sensor, and battery. The structure of your circuit can be based on that shown in the “Attiny85 Microcontroller Template.”
Step 4. Once you have your circuit drawn out and know which LEDs correspond to which pins on the microcontroller it is time to begin programming:
- Give each pin you will be using a name and set “buttonState” to zero.
- Initialize pins 1-3 as output and pin 4 (the button) as input.
- Set up “if” statement that will run the LED pattern if the button is pressed.
HINT: If your pin 4 is not connected to anything (which it should not be), then the “digitalRead” command randomly returns either HIGH or LOW. Whichever value it returns is changed once the button is pressed, allowing the “else” function of your “if” statement to be carried out.
- Based on the piano music (shown below), program the LEDs to light up in the correct order for the proportionally correct amounts of time
HINT: The command “digitalWrite(pin, value)” takes a pin and sends a voltage across it. If the value is “HIGH”, the voltage will be set to 5V and the LED will turn on. If the value is “LOW”, the voltage will be set to 0V (Ground) and the LED will turn off.
HINT: The command “delay” will delay the next command in the sequence by the input number of milliseconds.
- Upload code to the microcontroller
Notes:
– It may be helpful to attach your microcontroller to the Attiny85 Microcontroller Template while you program to ensure all your code is working correctly.
– This program could be made much more concise by using functions (instead of repeating the entire code to turn each LED on and off), but for simplicity, this tutorial does not use this method.
Step 5. Create your final circuit (based on previous sketch) on a piece of card stock.
Step 6. Add LEDs
Step 7. Once your program has been uploaded to the microcontroller, disconnect the microcontroller from the Attiny85 and add it to your circuit.
Step 8. Add battery. Secure with binder clip.
Congrats! Your programmable piano is complete. Simply connect the two pieces copper tape with your finger to play back your notes.