Follow the scheme in the Email from Circuito.io, and connect your breadboard.
1. Open the firmware file you received from Circuito.io.
2. In order to play your tune, you need to change 3 parameters:
- Length: add the number of notes in the melody.
- Melody array: add a list of notes you want to play by their order in the melody. The number of notes in the array must match the Length int.
- Note Duration Array: add a list of note durations:
4 = quarter note,
8 = eighth note, etc.
The number of note durations in the array must match the number of notes in the Melody Array and the Length int.
* We've highlighted the relevant parameters that you need to edit in the GIFS and images attached.
Play it!1. To play the melody use the piezoSpeaker.playMelody function in the loop code section using the parameters and arrays above.
Make sure to update the names of the parameters if you changed them in the setup, for example, if you named your tune "Mario", you'll need to change the names of the parameters to MarioLength, MarioMelody and MarioNoteDuration.
Also make sure that the parameters are in the same order as they appeared above.
2. Upload the modified code to your Arduino.
** The code was created based on the Arduino Tone function.
Comments
Please log in or sign up to comment.