mp3

player.h

Committer:
maner1256
Date:
2019-11-21
Revision:
7:64befc5be354
Parent:
3:94b538ace77a
Child:
4:5b1bd3cca8dc

File content as of revision 7:64befc5be354:

#ifndef PLAYER_H
#define PLAYER_H
#include "vs10xx.h"

/** Playing states definations. */
volatile typedef enum {
  PS_STOP,	       // Player stop						 
  PS_PLAY,         // Start to player                                                                    
} playerStatetype;


class Player
{
public:
  void begin(void);
  void playFile(char *file);
  void stop(void);
private:
    
};

#endif