Advanced Operating Systems - Final Project A @ Tokyo Tech ////////////// Author: Chu Van Thiem and Sidik Soleman ////////////// A WAVE file player on the MBED Application Board with an interface to a software on PC via a TCP connection. ////////////// Main functions: 1. Browse files of an attached USB flash 2. The list of the files of the attached USB are displayed on the LCD 3. Use an joystick to select a WAVE file and give an instruction to play that file 4. Adjust the volume using a potentiometer 5. Output audio to the analog audio out jack ////////////// Software (https://github.com/thiemcv/VS/tree/master/Terminal): 1. Connect with the MBED application board via Ethernet connection 2. Read the list of files stored on the USB flash 3. Write files to the USB flash

Dependencies:   C12832_lcd EthernetInterface USBHost mbed-rtos mbed wave_player

Committer:
aos
Date:
Sun Feb 02 10:49:19 2014 +0000
Revision:
1:3b567aa3b09e
Child:
2:5bc47e544b8d
Final Project V1: Integrated WAV player + USB file management via ethernet connection

Who changed what in which revision?

UserRevisionLine numberNew contents of line
aos 1:3b567aa3b09e 1 /* FILE: player.h by Sidik Soleman
aos 1:3b567aa3b09e 2 this is main program for playing music.
aos 1:3b567aa3b09e 3 */
aos 1:3b567aa3b09e 4 #ifndef __PLAYER_H__
aos 1:3b567aa3b09e 5 #define __PLAYER_H__
aos 1:3b567aa3b09e 6
aos 1:3b567aa3b09e 7 #include "mbed.h"
aos 1:3b567aa3b09e 8 #include "wave_player.h"
aos 1:3b567aa3b09e 9 #include "C12832_lcd.h"
aos 1:3b567aa3b09e 10 #include "string"
aos 1:3b567aa3b09e 11 #include "vector"
aos 1:3b567aa3b09e 12 #include "usb.h"
aos 1:3b567aa3b09e 13 #define NSAMPLE 25
aos 1:3b567aa3b09e 14
aos 1:3b567aa3b09e 15 void play(char* song);
aos 1:3b567aa3b09e 16 void welcome();
aos 1:3b567aa3b09e 17 void print(vector<string> *listoffile, int current);
aos 1:3b567aa3b09e 18 /* JoyValue = 1: up, 2: down, 3: play */
aos 1:3b567aa3b09e 19 void joystickcontrol();
aos 1:3b567aa3b09e 20 void controlvolume();
aos 1:3b567aa3b09e 21
aos 1:3b567aa3b09e 22 #endif