Hi everyone!
I'm currently trying to build some cubes with an accelerometer that would ultimately trigger some sounds in GarageBand.
I'm currently using:
I want to read the x, y and z of my accelerometer, send this data to a DAW via Wi-Fi (in this case, GarageBand) and start playing music based on movement.
I first tried using the MIDI protocol and the AppleMidi library (GitHub - lathoub/Arduino-AppleMIDI-Library: Send and receive MIDI messages over Ethernet (rtpMIDI or AppleMIDI)) but didn't manage to do much with it. I constantly get an error with the Midi.Begin() function.
I am now trying to use UDP (for Internet) and OSC to send my coordinates but I'm also stuck, as I'm completely new to OSC (and basically, everything!).
Can anyone give me some tips to get started with sending these details? I literally don't even know what address I should input in
OSCMessage msg("/test");
Any tip would help! Thanks!