esp32 soundboard project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
315 B

#ifndef _DATASOURCE_H
#define _DATASOURCE_H
class DataSource {
protected:
public:
static void open(const char *uri);
static size_t read();
static void close();
static bool available();
static unsigned char *buffer;
static unsigned int buf_pos;
private:
};
#endif /* _DATASOURCE_H */