got mp3

Dependents:   greenmp3hotmark

Fork of VS1053 by SGMP Coperations

player.h

Committer:
csggreen
Date:
2018-08-07
Revision:
6:a26a42923924
Parent:
4:5b1bd3cca8dc

File content as of revision 6:a26a42923924:

#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 selectfile(char n);
  void stop(void);
  void run(void);
  void read(void);
private:
    
};

#endif