summaryrefslogtreecommitdiffstats
path: root/schack.ino
diff options
context:
space:
mode:
Diffstat (limited to 'schack.ino')
-rw-r--r--schack.ino3
1 files changed, 3 insertions, 0 deletions
diff --git a/schack.ino b/schack.ino
index 6efcf5c..2cc3da2 100644
--- a/schack.ino
+++ b/schack.ino
@@ -1,12 +1,15 @@
1#include "controller.h"
1#include "mp3player.h" 2#include "mp3player.h"
2 3
3MP3Player *mp3Player; 4MP3Player *mp3Player;
5Controller *controller;
4 6
5void setup() { 7void setup() {
6 Serial.begin(9600); 8 Serial.begin(9600);
7 SD.begin(SS); 9 SD.begin(SS);
8 10
9 mp3Player = new MP3Player(); 11 mp3Player = new MP3Player();
12 controller = new Controller(mp3Player);
10} 13}
11 14
12 15