mp3
player.h@4:5b1bd3cca8dc, 2017-12-11 (annotated)
- Committer:
- csggreen
- Date:
- Mon Dec 11 12:29:47 2017 +0000
- Revision:
- 4:5b1bd3cca8dc
- Parent:
- 3:94b538ace77a
new type
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
cha45689 | 0:58524d569dfd | 1 | #ifndef PLAYER_H |
cha45689 | 0:58524d569dfd | 2 | #define PLAYER_H |
cha45689 | 0:58524d569dfd | 3 | #include "vs10xx.h" |
cha45689 | 0:58524d569dfd | 4 | |
cha45689 | 0:58524d569dfd | 5 | /** Playing states definations. */ |
cha45689 | 0:58524d569dfd | 6 | volatile typedef enum { |
cha45689 | 0:58524d569dfd | 7 | PS_STOP, // Player stop |
csggreen | 1:17913cff05a2 | 8 | PS_PLAY, // Start to player |
cha45689 | 0:58524d569dfd | 9 | } playerStatetype; |
cha45689 | 0:58524d569dfd | 10 | |
cha45689 | 0:58524d569dfd | 11 | |
cha45689 | 0:58524d569dfd | 12 | class Player |
cha45689 | 0:58524d569dfd | 13 | { |
cha45689 | 0:58524d569dfd | 14 | public: |
cha45689 | 0:58524d569dfd | 15 | void begin(void); |
cha45689 | 0:58524d569dfd | 16 | void playFile(char *file); |
csggreen | 4:5b1bd3cca8dc | 17 | void selectfile(char n); |
csggreen | 1:17913cff05a2 | 18 | void stop(void); |
csggreen | 4:5b1bd3cca8dc | 19 | void run(void); |
csggreen | 4:5b1bd3cca8dc | 20 | void read(void); |
cha45689 | 0:58524d569dfd | 21 | private: |
cha45689 | 0:58524d569dfd | 22 | |
cha45689 | 0:58524d569dfd | 23 | }; |
cha45689 | 0:58524d569dfd | 24 | |
cha45689 | 0:58524d569dfd | 25 | #endif |
cha45689 | 0:58524d569dfd | 26 |