Intermediary commit. Nothing's working, everything is broken. Let's start over now...

This commit is contained in:
2019-08-04 13:42:07 +02:00
parent 8ba724e682
commit fcf0e8b7d3
8 changed files with 206 additions and 3 deletions

View File

@ -1,13 +1,15 @@
#pragma once
#include "player.h"
#include "sd_card.h"
class Controller {
private:
Player* _player;
SDCard* _sd_card;
public:
Controller(Player* p) : _player(p) {}
Controller(Player* p, SDCard* c) : _player(p), _sd_card(c) {}
void vol_up();
void vol_down();
void track_next();