got mp3

Dependents:   greenmp3hotmark

Fork of VS1053 by SGMP Coperations

player.h

Committer:
csggreen
Date:
2017-12-10
Revision:
3:94b538ace77a
Parent:
2:a59255e80c0d
Child:
4:5b1bd3cca8dc

File content as of revision 3:94b538ace77a:

#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