Adabox004 Project 1 WiFi Music Alert Box
2017-07-12 | By Adafruit Industries
License: See Original Project AdaBox Adafruit Feather
Courtesy of Adafruit
Guide by John Park
Overview
You can turn the Internet of Things into the Internet of Tunes! With this easy-to-build project you can use online events to trigger your favorite songs.
The Feather ESP8266 Huzzah is a WiFi connected board that can use the Music Maker FeatherWing with amp to play music at your command. Using the Adafruit IO service, a small bit of Arduino code and IFTTT (If This then That), events such as Twitter mentions, weather reports, YouTube uploads, news alerts, and more can trigger songs to play that you have stored on the included SD memory card.
Build It
There are endless possibilities for you to create a sweet enclosure for your connected Feather, FeatherWing, and speaker. We've included this lovely little cardboard box for just this purpose. You can decorate it, cut it, modify it, bedazzle it, and make it your own!
This is just one way to get your system set up for WiFi enabled playback. You can modify this to suit your needs, such as adding the breadboard, IR receiver, and potentiometer for volume control. It's as simple as marking and cutting the cardboard with a hobby knife and then mounting your parts.
Decide where to mount your speaker.
Mark the position with a pencil.
Cut inside the lines a bit for a snug fit.
Pop in your speaker.
For an extra secure build, use the supplied screws and nuts.
Poke a hole through at each corner.
Push the screws through, and then secure the nuts on the other side.
Insert the USB cable into the box through the side flap as seen here. You'll use it to program and power the Feather.
NOTE: Due to fluctuations in the organic, artisanal cardboard box harvest, your box may look different than the one pictured here. It is fine to modify yours as needed to route the wiring, such as the one seen in the last picture here.
Wire the speaker to the screw terminals of the Music Maker MP3 FeatherWing, and tighten the screws.
If you're mounting the Feather HUZZAH to the breadboard, do so now. You can also go breadboard-less.
Whether or not you use the breadboard, you'll want to insert your SD card. Make sure you can remove it easily for adding files to it later.
Fit the Music Maker FeatherWing onto the Feather HUZZAH.
Now, you can close up the box.
The USB cable can be used both to program and power the device. To power it from a wall outlet, plug it into the provided 5V transformer.
Feeling fancy? Great, me too! Decorate your player with the provided collectible enamel pin!!
You can also get super duper fancy and use different speakers and boxes for your WiFi Music Alert Box, as seen here.
Code It
There are three areas to "code" for this project.
- First, we have the Arduino code that'll run on the Feather board.
- Second, we have Adafruit IO feeds and dashboard to configure.
- And lastly, we'll go to IFTTT.com to set up applets that can trigger the Adafruit IO feeds.
Arduino Code
The program running on the Feather is pretty simple. It is adapted from two sample sketches. One that plays music using the Music Maker FeatherWing, and another that connects the board to WiFi and waits for commands from Adafruit IO.
First, make sure you're familiar with the setup and coding of the Feather board, by going through this guide and connecting to WiFi successfully.
Next, become familiar with playing MP3s with the Music Maker FeatherWing by following the setup in this guide.
Now, you're ready to download the Music Alert Box code and configure it to your needs.
Download this file and then unzip it and move the directory into your Arduino sketch folder.
The sketch contains two files. First, we'll look at the config.h file. Here, you need to change the IO_USERNAME to your Adafruit IO username, and the key to your Adafruit IO key.
You can find more info on this here.
Once you've made these changes, save the file.
/************************ Adafruit IO Config *******************************/
// visit io.adafruit.com if you need to create an account,
// or if you need your Adafruit IO key.
#define IO_USERNAME "your adafruit io username"
#define IO_KEY "your adafruit io key"
/******************************* WIFI **************************************/
// the AdafruitIO_WiFi client will work with the following boards:
// - HUZZAH ESP8266 Breakout -> https://www.adafruit.com/products/2471
// - Feather HUZZAH ESP8266 -> https://www.adafruit.com/products/2821
// - Feather M0 WiFi -> https://www.adafruit.com/products/3010
// - Feather WICED -> https://www.adafruit.com/products/3056
#define WIFI_SSID "your wifi sside"
#define WIFI_PASS "your wifi password"
// comment out the following two lines if you are using fona or ethernet
#include "AdafruitIO_WiFi.h"
AdafruitIO_WiFi io(IO_USERNAME, IO_KEY, WIFI_SSID, WIFI_PASS);
/******************************* FONA **************************************/
// the AdafruitIO_FONA client will work with the following boards:
// - Feather 32u4 FONA -> https://www.adafruit.com/product/3027
// uncomment the following two lines for 32u4 FONA,
// and comment out the AdafruitIO_WiFi client in the WIFI section
// #include "AdafruitIO_FONA.h"
// AdafruitIO_FONA io(IO_USERNAME, IO_KEY);
/**************************** ETHERNET ************************************/
// the AdafruitIO_Ethernet client will work with the following boards:
// - Ethernet FeatherWing -> https://www.adafruit.com/products/3201
// uncomment the following two lines for ethernet,
// and comment out the AdafruitIO_WiFi client in the WIFI section
// #include "AdafruitIO_Ethernet.h"
// AdafruitIO_Ethernet io(IO_USERNAME, IO_KEY);
Next, you'll change the MusicAlertBox.ino file to include the names of the .mp3 files you're using. Be sure to copy these to the SD card, and keep the names short (eight-dot-three format is a safe way to go). The names must match exactly between the files and their callouts in the code.
//WiFi Music Alert Box
// Uses Feather Huzzah ESP8266 WiFi board and Music Maker FeatherWing
// along with Adafruit IO and IFTTT to play triggered sound files
// written by John Park
// based on Todd Trece's Digital Input sample code
//MIT license
/************************** Configuration ***********************************/
// edit the config.h tab and enter your Adafruit IO credentials
// and any additional configuration needed for WiFi, cellular,
// or ethernet clients.
#include "config.h"
/************************ libraries *****************************************/
// include SPI, MP3 and SD libraries
#include <SPI.h>
#include <SD.h>
#include <Adafruit_VS1053.h>
/************************ Music Maker definitions ***************************/
// These are the pins used
#define VS1053_RESET -1 // VS1053 reset pin (not used!)
// Feather ESP8266
#define VS1053_CS 16 // VS1053 chip select pin (output)
#define VS1053_DCS 15 // VS1053 Data/command select pin (output)
#define CARDCS 2 // Card chip select pin
#define VS1053_DREQ 0 // VS1053 Data request, ideally an Interrupt pin
Adafruit_VS1053_FilePlayer musicPlayer =
Adafruit_VS1053_FilePlayer(VS1053_RESET, VS1053_CS, VS1053_DCS, VS1053_DREQ, CARDCS);
/************************ Define Feeds**************************************/
// set up the 'song' feed
AdafruitIO_Feed *song = io.feed("music-player-01-song");
//set up the 'volume' feed
AdafruitIO_Feed *volume = io.feed("music-player-01-volume");
//set up the 'pause' feed
AdafruitIO_Feed *pause = io.feed("music-player-01-pause");
/************************ setup ********************************************/
void setup() {
if (! musicPlayer.begin()) { // initialise the music player
while (1);
}
musicPlayer.sineTest(0x44, 500);// tone to indicate VS1053 is working
if (!SD.begin(CARDCS)) {
while (1); // don't do anything more
}
// Set volume for left, right channels. lower numbers == louder volume!
musicPlayer.setVolume(20,20);
musicPlayer.useInterrupt(VS1053_FILEPLAYER_PIN_INT); // DREQ int
// set led pin as a digital output
//pinMode(LED_BUILTIN, OUTPUT);
// start the serial connection
Serial.begin(115200);
// wait for serial monitor to open
//while(! Serial);
// connect to io.adafruit.com
Serial.print("Connecting to Adafruit IO");
io.connect();
// set up a message handler for each of the feeds.
// e.g., the handleSongMessage function (defined below)
// will be called whenever a "song message" is
// received from adafruit io
song->onMessage(handleSongMessage);
volume->onMessage(handleVolumeMessage);
pause->onMessage(handlePauseMessage);
// wait for a connection
while(io.status() < AIO_CONNECTED) {
Serial.print(".");
Serial.println(io.statusText());
delay(500);
}
// we are connected
Serial.println();
Serial.println(io.statusText());
}
/************************ loop *********************************************/
void loop() {
// io.run(); is required for all sketches.
// it should always be present at the top of your loop
// function. it keeps the client connected to
// io.adafruit.com, and processes any incoming data
io.run();
}
/************************ handleSongMessage ********************************/
// this function is called whenever a 'song' feed message
// is received from Adafruit IO. it was attached to
// the 'song' feed in the setup() function above.
void handleSongMessage(AdafruitIO_Data *data) {
Serial.print("song received <- ");
// write the current state to the led
if(data->toInt()==1){
musicPlayer.startPlayingFile("sloww.mp3");
}
else if(data->toInt()==2){
musicPlayer.startPlayingFile("mm.mp3");
}
else if(data->toInt()==3){
musicPlayer.startPlayingFile("alon.mp3");
}
else if(data->toInt()==4){
musicPlayer.startPlayingFile("breaths.mp3");
}
else if(data->toInt()==5){
musicPlayer.startPlayingFile("happy.mp3");
}
else if(data->toInt()==6){
musicPlayer.startPlayingFile("kittin.mp3");
}
else if(data->toInt()==7){
musicPlayer.startPlayingFile("new1.mp3");
}
else if(data->toInt()==8){
musicPlayer.startPlayingFile("new2.mp3");
}
else if(data->toInt()==9){
musicPlayer.startPlayingFile("pop_1.mp3");
}
else if(data->toInt()==10){
musicPlayer.startPlayingFile("wawawa.mp3");
}
else if(data->toInt()==11){
musicPlayer.startPlayingFile("zoom1.mp3");
}
else if(data->toInt()==12){
musicPlayer.startPlayingFile("metroply.mp3");
}
else if(data->toInt()==13){
musicPlayer.startPlayingFile("pascal.mp3");
}
else if(data->toInt()==14){
musicPlayer.startPlayingFile("solder.mp3");
}
Serial.print(data->feedName());
Serial.print(" ");
Serial.println(data->value());
}
/************************ handleVolume ************************************/
// this function is called whenever a 'volume' feed message
// is received from Adafruit IO. it was attached to
// the 'volume' feed in the setup() function above.
void handleVolumeMessage(AdafruitIO_Data *data) {
Serial.print("volume received <- ");
// since we are using the same function to handle
// messages for two feeds, we can use feedName() in
// order to find out which feed the message came from.
Serial.print(data->feedName());
Serial.print(" ");
Serial.println(data->value());
musicPlayer.setVolume(data->toInt(), data->toInt());
}
/************************ handlePauseMessage *******************************/
// this function is called whenever a 'pause' feed message
// is received from Adafruit IO. it was attached to
// the 'pause' feed in the setup() function above.
void handlePauseMessage(AdafruitIO_Data *data) {
Serial.print("pause received <- ");
// write the current state to the led
if(data->toInt()==1){
musicPlayer.pausePlaying(false);
}
else if(data->toInt()==0){
musicPlayer.pausePlaying(true);
}
Serial.print(data->feedName());
Serial.print(" ");
Serial.println(data->value());
}
Save and then upload the sketch to your Feather ESP8266 Huzzah and test it out. You should see the board connect to your WiFi network by checking the serial monitor.
Adafruit IO
Now, we can set up Adafruit IO to act as a WiFi connected playback UI for the Feather and its songs.
The Adafruit IO Basics: Digital Input guide is an excellent place to start to get an understanding of how the system works. Familiarize yourself with the guide, and even try out the example to get started. Then, we'll modify the feeds and dashboard for our needs.
For the WiFi Music Alert Box we'll set up three feeds: Song, Volume, and Pause.
Create the Song Feed
Start by creating a new feed Named Music Alert Box Song. If you need help getting started with creating feeds on Adafruit IO, check out the Adafruit IO Feed Basics guide.
Edit the feed to adjust the key name if needed -- this is the name that will be used by the Arduino sketch to interact with the feed. In this case, the key is set to music-player-01-song. You can see this in the Arduino sketch where it says:
// set up the 'song' feed
AdafruitIO_Feed *song = io.feed("music-player-01-song");
Create two more feeds, Music Alert Box Volume, and Music Alert Box Pause. Each of these will be used to handle different kinds of data. use the key names seen here.
Dashboard
Create Dashboard
In order to assign meaning to the feeds you've created, make a new Dashboard called Music Alert Box. If you need help getting started with Dashboards on Adafruit IO, check out the Adafruit IO Dashboard Basics guide.
Create Song Blocks
Create a new block that will play a song when clicked. For this, you can use a momentary button block.
The pop-up window will ask you to select to which feed to connect the button. In this case, we'll choose Music Alert Box Song feed by clicking the group/feed checkbox for that line, and then click Next Step.
In the Block Settings window that pops up, you can name the block, adjust the button text to the name of the song you want it to trigger, and give the Press Value a number that correlates to your Arduino sketch if statement. You can delete the Release Value, we won't use it in this case, and then click Create block
Your dashboard will now have an on button on it. Click it and your song will play!
Add more buttons to correlate to each song, and then you can arrange them by clicking the gear icon on your dashboard.
Create Volume Slider
You can create a slider element to control the volume.
For this block, select the Music Alert Box Volume feed.
Adjust the block settings in the next popup window to match these.
Test this out -- now as you play back songs you can adjust the volume.
Pause/Play Block
For fun, let's set up a block that can pause and play the songs! Create a new toggle block.
Choose the Music Alert Box Volume feed.
Use the title Pause/Play to label the block on the UI. Set the On text to 1 and the Off text to 0. These are the values that will be sent to the Feather when the block is clicked.
Stream Block
Lastly, we'll create a data stream block. This will allow us to see the values flowing from our button presses to the Feather.
Select all three Music Alert Box feeds.
Place the data feed block where you like. Now, you can see updates as your feed data changes.
If This then That - IFTTT
The third part of the setup is to trigger the songs using Internet alerts via IFTTT applets. These can be any of hundreds of possible triggering services! For example, Twitter, Date & Time, Flickr, YouTube, just to name a few.
If you haven't already, create an account on IFTTT.com
Once you have logged in, click on your user profile and choose, Services from the drop-down menu.
Click on "All service", then type "Adafruit" into the search bar, and then click on the Adafruit service icon.
Click the big, huge Connect button. Because how can you resist?
If you are logged into your Adafruit.com account, you'll be asked to authorize the IFTTT connection. (If not, you need to first log into Adafruit.)
Now, back in IFTTT, you can create a new Applet. Click on My Applets and then click New Applet.
Click on the +this link.
Pick the Date & Time service.
Choose the Every hour at trigger
Leave it set to 00 and click Create trigger.
That takes care of the if this, so on to the then that. Click the +that link.
Type adafruit into the search, then click on the Adafruit icon.
There's just the one option, Send data to Adafruit IO.
From the dropdown for Feed names, pick Music Alert Box Song. This tells the action to send data to that Adafruit IO feed. Then, type in a 1 in the Data to save field. This is the number of the song you want to play on the hour. Then click Create action.
Click Finish because you're all done!
You can check that all of the connections between services are working properly by clicking the applet to expand its info, and then click Check now.
Use It
Now that you know how to set up an IFTTT applet connected to Adafruit IO service, you can make many more triggered by anything that's available, from social media mentions, to stock market fluctuations, to smart home sensor, and even voice commands from Amazon Alexa.
Feel like going bit more mobile with your Music Alerts? You can add a battery to your project, such as the 2200MAh LiPoly seen here. As long as you're in WiFi range, you can take your IoT tunes from room to room of your house or office.
Have questions or comments? Continue the conversation on TechForum, DigiKey's online community and technical resource.
Visit TechForum