aboutsummaryrefslogtreecommitdiffstats
path: root/maximilian_examples/21.Recording.cpp
diff options
context:
space:
mode:
authormick grierson <mickgrierson@gmail.com>2016-12-14 02:30:59 +0000
committermick grierson <mickgrierson@gmail.com>2016-12-14 02:30:59 +0000
commit17fd15bf2e9cf1163d40d98286abd60378fd9df9 (patch)
tree9a084bc4aaab12675acddd21a262f6626de4eb06 /maximilian_examples/21.Recording.cpp
parentd60b86693af086e820f2488a4f8db6fe96ed7ece (diff)
parent0eebdbe7c7add5802a272971ec4f5d495c507e21 (diff)
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'maximilian_examples/21.Recording.cpp')
-rw-r--r--maximilian_examples/21.Recording.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/maximilian_examples/21.Recording.cpp b/maximilian_examples/21.Recording.cpp
index 82e0e68..27c9bca 100644
--- a/maximilian_examples/21.Recording.cpp
+++ b/maximilian_examples/21.Recording.cpp
@@ -19,9 +19,12 @@ void setup() {
// Call setup here, make sure you do this so the recorder
// knows where to write the file. Currently the recorder
// will write the wav file to the directory that this file
- // is in but you can pass any absolute file path in you'd
- // like to.
- recorder.setup("hey.wav");
+ // is in if you use linux but with mac and windows I
+ // strongly reccomend putting an absolute file path to the
+ // directory you want to write to. Also, when in Windows,
+ // remember to do double '\' characters because they
+ // count as an escape which will nullify any path you write
+ recorder.setup("lovesong.wav");
// This must be called to start the asynchronous thread to
// manage the recorder's internal memory