From 3096df411dd24015a4e9e46fac196652ad64401a Mon Sep 17 00:00:00 2001 From: Mike Lynch Date: Sat, 26 Mar 2022 15:38:26 +1100 Subject: [PATCH] Added NOTES.md --- NOTES.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 NOTES.md diff --git a/NOTES.md b/NOTES.md new file mode 100644 index 0000000..478f1b2 --- /dev/null +++ b/NOTES.md @@ -0,0 +1,21 @@ +TODO + +- Convert the granulator (including the buffer stuff) to a class + +- Convert the TouchOSC interface library to a class + +These will involve some disintermingling of code + +Ideally I want to be able to use the granulator, TouchOSC and the +midi controller as part of the same session, so do stuff like + + +t = TouchOSC("192.168.0.30") + +g = Granulator() + +k = MidiKnobs(); + +t.bind('/grain', 0, 1, 0.5, { |self| g.set("amp", self.v) }); + +t.bind( \ No newline at end of file