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