Page 1 of 1
Integration with Arduino
Posted: Tue Jul 29, 2014 11:09 pm
by penguinpajamas
Hey guys! So I've been working with both the Arduino micro controller as well as Max for Live quite a bit lately, however currently unable to bridge the gap between the two at all. I'm itching to be able to do this, as I can't stop thinking of the possibilities this allows.
I've messed around with maxuino but it was very buggy for me. I could swear everything but only certain features would work.
Are there any ways of sending data from the Arduino to Max for Live or vice-versa that anyone would care to share or point me in the direction of. It would be HIGHLY appreciated.
-Charlie
Re: Integration with Arduino
Posted: Sat Aug 23, 2014 12:32 pm
by ansolas
I am also interested in using my arduino with live
Re: Integration with Arduino
Posted: Sat Aug 23, 2014 1:17 pm
by chapelier fou
Not a specialist, but according to my experience, i would advice :
make a stand alone max patch using the serial communication. send it with udpsend. catch the messages with udpreceive with m4l.
It looks unsexy i know but should be easy and fast.
Re: Integration with Arduino
Posted: Sun Aug 24, 2014 2:50 pm
by gavspav
You don't really need a standalone max patch and network sends.
Just use the serial object in Max4Live.
Serial.print(data); to get data from Arduino to M4L and bang the serial object.
Feed data into the serial object to get data into the Arduino.
Remember to get the port and baud settings correct.
Re: Integration with Arduino
Posted: Mon Aug 25, 2014 7:17 am
by clement.m
I remember, when I was starting to use Arduino, I found a few m4l devices but it was never a big success, probably due to my lack of knowledge on both.
All I can say is that now that I have experience with Arduino, I do as much as I can inside of it to get a stand-alone device and avoid some additional work for the computer.
Re: Integration with Arduino
Posted: Mon Mar 23, 2015 1:43 pm
by chapelier fou
I've been toying a little with maxuino and i must say, after taking the time to understand it better, it's working great.
I don't use the maxuino.amxd as i find it resrictive and i hate the GUI approach. But just dropping a maxuino regular patcher in your M4L device works well.