A S / Mbed 2 deprecated aos_mbed

Dependencies:   C12832_lcd EthernetInterface USBHost mbed-rtos mbed wave_player

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers player.h Source File

player.h

00001 /* FILE: player.h by Sidik Soleman
00002 */
00003 #ifndef __PLAYER_H__
00004 #define __PLAYER_H__
00005 
00006 #include "mbed.h"
00007 #include "wave_player.h"
00008 #include "C12832_lcd.h"
00009 #include "string"
00010 #include "vector"
00011 #include "usb.h"
00012 #define NSAMPLE 25
00013 
00014 void play(char* song);
00015 void welcome();
00016 void print(vector<string> *listoffile, int current);
00017 /* JoyValue = 1: up, 2: down, 3: play */
00018 void joystickcontrol();
00019 void controlvolume();
00020 
00021 #endif