Music Playing Alarm Clock by frank26080115
Contest WinnerFeatured
done2.jpg
blockdiagram.png
finished1.png
 


This Instructable will be about designing a music player from using various building blocks. You will understand the communication between the microcontroller, memory, computer, LCD display, RTC, IR remote, and the music file decoder. I will try my best to to teach you in a way so that you can design your own projects using the skills you learn, without blindly following instructions.

I know most of you will simply glance at this first page and maybe skim through the rest. This Instructable has 18 steps and 5 appendices, with about 90 files and pictures. I sincerely hope you explore all my efforts.

Every step will be accompanied by a demonstration of that particular building block working. The source code will be provided. I will post the debug output, pictures, screenshots, USB device and packet analysis, and logic analyzer waveforms. NOTE: if the images look too compressed, don't worry, they are included inside my .ZIP files too.

To start off the project, set your goals. This will be a simple proof-of-concept music player. It will allow the user to load music as through USB as though it is a mass storage device, display the current song to the user, display the current time, set custom alarms for every day of the week, and allow the user to control it through a remote control. To accomplish these goals, you need:

* USB capable microcontroller
* LCD display
* Storage
* Sound output
* IR receiver and remote control (any)

This is the obvious overview, however, we also need a RTC (real time clock) to keep track of time using a backup battery, just in case the power goes out.

Note that with my collection of supplies, budget, and skills, I've decided to use a VS1033D decoder IC from VLSI Solutions, which integrates music file decoding and digital-to-analog output. So the item "sound output" in the above list expands into "decoder" and "speaker"

I will be using the following components during this Instructable (this is not a full part list, not even close, but these are major):

AT90USB1286 microcontroller (on a Teensy++ http://www.pjrc.com/store/teensypp.html ), datasheet is here: http://www.atmel.com/dyn/products/product_card.asp?part_id=3874
VS1033D music decoder http://www.vlsi.fi/en/products/vs1033.html on a breakout board http://www.sparkfun.com/products/8792
16x2 character LCD display, ST7066/HD44780 compatible, using 3.3V instead of 5V
DS1307 real time clock

Note that the entire circuit will run off 3.3V, if you are buying a Teensy or Teensy++, please buy http://www.pjrc.com/store/mcp1825.html and follow the correct procedures to solder it and use it (it involves a jumper). Please also note that you must also run the Teensy at 8 MHz instead of 16 MHz because of the reduced voltage.

I also hope that once you are done, you'll be able to apply the skills you learn here with other microcontrollers and devices.
 
Remove these adsRemove these ads by Signing Up

Step 1: Before You Begin

b4ubegin_serterm.png
Instead of giving you the whole schematics and source code and tell you to build the damn thing while showing pretty pictures, I will break down the building blocks of this project, and give you demonstrations of that particular "block" that you should perform in order to understand what is going on. Through this process you will learn how to diagnose problems and also how to use various techniques in other projects.

To get you started, I will make sure you know how to compile and upload a "hello world" program to the Teensy++. This code will show you how to output debug messages, which will be useful later.

Obviously you need an AT90USB1286 microcontroller for this, and since it's hard to solder by hand, I choose to buy a Teensy++. http://www.pjrc.com/store/teensypp.html

This example is based on "USB Serial" on PJRC
http://www.pjrc.com/teensy/usb_serial.html

If you wish to learn more about communication with USB, please refer to my appendix "step" about USB.

Please refer to my appendix "step" about AVRs to figure out how to use makefiles and the GNU AVR toolchain.

Download the files attached. Run "make" to generate the .hex file. Upload the .hex file to the microcontroller. Open up a serial terminal to see the output. The baud rate shouldn't matter since this is a fake serial port.

Provided below is the USB analyzer dump of the device and a sample packet of data, for those of you who wish to learn more about USB.

Note: I personally REALLY like using RealTerm as a serial terminal http://realterm.sourceforge.net/ , I will be posting screenshots of the terminal output whenever I can. I will also post logic analyzer screenshots, .logicsession files (can be opened with the Saleae Logic software http://www.saleae.com/logic/ ), and exported files whenever I can.

Some people have asked me about how to use stdio.h and printf (and similar streaming and formatting functions) on AVR microcontrollers, the following links are in the code comments:
http://www.nongnu.org/avr-libc/user-manual/modules.html
http://www.nongnu.org/avr-libc/user-manual/group__avr__stdio.html

Also since this is "before you begin", go download Saleae Logic's software, if I ever attach .logicdata files, you need the software to view it. http://www.saleae.com/logic/ , it's in the downloads (version 1.1.14 is what I used) page, you can use it even if you do not own a Saleae logic analyzer. I will also try to include screenshots.
1-40 of 69Next »
NGamaya says: Nov 30, 2012. 3:39 AM
asSAsas
The-Rex says: Jul 4, 2012. 8:48 AM
Nice!
chrwei says: Feb 27, 2012. 12:00 PM
what's the highest bitrate mp3 you've been able to smoothly play on this?
frank26080115 (author) says: Feb 27, 2012. 12:09 PM
I think it can do 128kbps
chrwei says: Feb 27, 2012. 1:12 PM
but have you tested? There's theory and math, and then there's actual real world performance. Sometimes real world is better than the math, especially when dealing with human perception, and sometimes it's far worse.
chrwei says: Feb 27, 2012. 11:54 AM
Sparkfun seems to have fixed their VS1033D breakout board now, so hopefully Step16 is no longer needed for new builds
woow says: Feb 13, 2012. 3:29 PM
Hey, sorry for bothering you again:(
i am currently using a mbed to program the alarm clock, and I have successfully decode one song from sd card. Just wondering how can you decode the name of the song so the mbed can decode any song that I put in through USB. Currently I am using code like ' fopen("/sd/mp3/test1.mp3","rb");' so the title of the song must be test1. Thank you very much:)

ankush_karche says: Jan 19, 2012. 4:06 AM
Hello, I have purchased all parts for this kit and progressing on it. For IR Code Capture I am getting problem and stuck since very long time. Even for £1 valued IR diode I have spent £16 and for remote controls I have spent £40. I would appreciate if any body can guide me for Remote Control. Where can I get intented remote control (make / web link).

Please help. Your help is highly appreciated.

Best regards,
Ankush
frank26080115 (author) says: Jan 19, 2012. 6:13 AM
You are supposed to be able to use any remote control. Nobody sells the remote control I used.

You are supposed to try it out, and if it doesn't work, figure out why it doesn't work, and fix the problem. So what is the problem? What do you expect to see? What do you see instead?
ankush_karche says: Jan 20, 2012. 10:35 AM
Hello Frank,

I am using codes given by my remote controls in IRCodeInterpret module but not matching with and just displaying message Checking .... on Realterm.

As described by you, remote control should display same pattern that's what not happening.

Any other ways to overcome this problem ?

Please help.

Best Regards,
Ankush
ankush_karche says: Jan 20, 2012. 1:02 AM
Hi Frank,

Thanks for your response. I am getting codes with IRCodeCapture module but each time for same button pressed on remote control codes displayed are different.

I put these codes in IRCodeInterpret module and check it. I get output on RealTerm screen as checking..

When I put ircodes in header file and check interpret module then I should get which button is pressed on remote control. But it is not showing due to codes not matching.

Hope the problem is resolved with your help.

Regards,
Ankush

xp309 says: Nov 25, 2011. 2:59 AM
Great project! really helps a lot. I just got couple of questions wanna ask you about. Firstly if i decided to use an arm micro-controller, i would not need to use a music decoder right? Instead I need a DAC?
Secondly, how do u decide what size of RAM and frequency u need]?
Thirdly, is sd card originated formatted in fat16 and what does fatfs do exactly (the difference between it and fat16) ?
Lastly,why do you choose ADR instead of ARM? Is 8 bits AVR gonna be fast enough for playing mp3 file?
Cheers and look forward to hear from u



frank26080115 (author) says: Nov 25, 2011. 5:42 AM
Most ARM microcontrollers have DACs built-in

I did not really make a decision on RAM and frequency, I just knew what I had will work.

FAT16 is the format, FatFs is the software used to read the FAT16 format.

I simply like using AVR chips. It works... Developing for them is comfortable.
frank26080115 (author) says: Nov 25, 2011. 6:45 AM
to determine RAM requirements, you can start by considering that FatFs requires a 512 byte cache at least

The frequency required can be determined by calculations using the MP3 file bitrate, and the maximum SPI bus transfer rate

I can use ARM if I wanted to, I have worked with AT91SAM7X, mbed, and STM32F4. Most ARM chip requires a custom designed PCB because they do not typically come in DIP form, and I didn't really want to spend the money on the custom PCB.
xp309 says: Nov 26, 2011. 5:22 PM
Thank you so much for the answer. I am trying to calculate the mp3 bit rate which is 100kbps (3mb/(5min x 60)) .however how do I relate it to the frequency of the microcontroller?

frank26080115 (author) says: Nov 26, 2011. 6:05 PM
frequency of the microcontroller will limit the speed of the SPI bus, which is used to transfer the data between the SD card, the mcu, and the decoder
xp309 says: Nov 27, 2011. 6:12 AM
thanks for the answer.,i think i wrote my question in the wrong way..i wanted to ask how do you calculate the minimum and maximum frequency that you need to have for the microcontroller
woow says: Nov 10, 2011. 10:27 PM
hey.sorry to bother u again.can i use vs1003b instead of vs1033d as the only difference is the i2s interface? And the I2S interface for external DAC function is not used in this case right?
Thanks :)
frank26080115 (author) says: Nov 11, 2011. 2:31 AM
those two chips are compatible if you are simply playing MP3 to headphones

You can use almost any AVR microcontroller you want, if you want the USB mass storage capability then obviously you need one that features USB. Just make sure it has enough memory to do what you want, enough pins for everything, and a SPI bus to do the talking between the SD card and MP3 decoder.

I posted rough wiring schematics in the instructable, I'm sure you can adapt the circuit to whatever you are doing
woow says: Nov 10, 2011. 7:16 PM
So do that that mean if i wanna use a loudspeaker, then i must use the audio decoder with I2S interface? Thanks :)
frank26080115 (author) says: Nov 11, 2011. 4:05 AM
no, you need an amplifier of some sort
woow says: Nov 13, 2011. 5:51 PM
sorry...i didn't quite understand..so i can use vs1003b connect to speaker but i need an amplifier to make the music sounds louder right? also, if i am now using sd card only, like what u did at the end, do i still need file system? thanks a lot :)
frank26080115 (author) says: Nov 14, 2011. 2:05 AM
You can connect speakers directly to the VS1003b but only small speakers, if you need big speakers, you need an amplifier.

You should always use a file system, unless you have some sort of weird requirement
woow says: Nov 10, 2011. 5:58 PM
helllooo..thanks for this!
can i ask what other micro-controller and music decoder that i can use which would have the same functions but cheaper? Many thanks :)
frank26080115 (author) says: Nov 10, 2011. 11:03 AM
I've seen designs that use the STA013 but you need a DAC to go with that, I don't know if it'll be cheaper but it's another option

Most ARM processors can probably decode the MP3 file without external help, the mbed already have an example program available for it, it also have a built in DAC. The mbed is kind of expensive at $60-ish but it's awesome, and the only people who say bad things about it are too stupid/lazy to compile offline for it.

A few weeks ago, STMicroelectronics were giving out free STM32F4Discovery kits, now they cost some money, but not too expensive, this board has a ton of audio features, it has a microphone built right in, and a I2S sound output thing with a headphone jack. The processor itself have DSP and FPU. It's a good candidate.
woow says: Nov 25, 2011. 4:18 AM
sorry for so many questions....i am really a beginner in this field..may i ask why you need music decoder for your design? i saw online that avr has mad library that could use to decode mp3. and also arm has the libmad library to decode the music without music decoder right?
frank26080115 (author) says: Nov 25, 2011. 5:40 AM
show me a 8 bit (not 32 bit) AVR using MAD please.

I highly doubt a 8 bit AVR at 8 MHz can use MAD.
woow says: Nov 20, 2011. 7:28 AM
hey.i have decided to use a mbed.. however from my research, you still need a music decoder to go with it? also i couldn't get how sd card communicate with usb host and usb host with pc using mbed.thanks :)
frank26080115 (author) says: Nov 20, 2011. 10:14 AM
you don't need a decoder, see http://mbed.org/users/Gruenfrosch/programs/madplayer/liih0r

Also, you are not being a USB host, you are being USB device, NOT host

You cannot communicate between SD card with MCU and SD card with computer at the same time
olegmilosevic says: Nov 7, 2011. 11:49 AM
where to find teensy board ???
diskincluded says: Sep 15, 2011. 9:42 AM
Is there a way to make the alarm start with a very low volume, then build up to regular volume over a few minutes?
frank26080115 (author) says: Sep 15, 2011. 10:11 AM
Of course, that should be easy

The function that plays out the data runs in a loop, just increase a variable in that loop and repeatedly set the volume using that variable
diskincluded says: Sep 15, 2011. 11:07 AM
Well then, it would appear I have some parts to buy.
ldaturtle says: Aug 17, 2011. 12:31 PM
Hey, Great project! All the parts I need just came in the mail so I have begun building this alarm clock. However, this is my first electronics project (so i'm pretty noob at it) and I am stuck trying to setup realterm correctly.. I uploaded the hex file to the microcontroller, and I have realterm installed and running. But how do you setup realterm to get it to read the data the microcontroller is sending?
frank26080115 (author) says: Aug 17, 2011. 1:11 PM
if you are using the Teensy++, it should appear to your computer as a serial port, which has a specific COM port number, you need to tell RealTerm to open that specific port.

If you are using the ATmega644 then you need a USB-to-serial cable, which also will have a COM port number
ldaturtle says: Aug 17, 2011. 3:40 PM
I am using the Teensy++, I have everything setup correctly I believe.. But when I click start: overwrite or append, nothing happens. I have the capture file setup as well but it doesn't capture anything..
frank26080115 (author) says: Aug 17, 2011. 4:11 PM
uncheck "direct capture" and see what happens
ldaturtle says: Aug 17, 2011. 7:19 PM
perfect, thanks
Robotics Guy says: Jul 27, 2011. 12:56 PM
Very cool project! I wrote a very in-depth tutorial on the hd44780 and thought you might want to add it to your LCD Basics section: http://www.robotenthusiasts.com/page/index.html/_/tutorials/pic-microcontrollers/hd44780-lcd-r14
frank26080115 (author) says: Jul 27, 2011. 1:44 PM
Thanks, I added your link

I like your custom character tool
1-40 of 69Next »
Pro

Get More Out of Instructables

Already have an Account?

close

PDF Downloads
As a Pro member, you will gain access to download any Instructable in the PDF format. You also have the ability to customize your PDF download.

Upgrade to Pro today!