<div dir="ltr"><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Thanks Christof (and Martin) for pointing me to the CNMAT library.</div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">I did spend a bit of time with this library before posting to the list but the tutorial I looked at originally required the ethernet shield. Now I am giving the  slipenc/slipdec + OSC functionality a try.  The raw SLIP packages look promising as well though I unfamiliar with bitshifting at this point! </div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Christof, </div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Your Arduino_Serial patches look very promising.  Thanks for taking the time to make this and send my way!  I've taken a look and after getting the mrpeach objects loaded correctly (and the object/message connections correctly reconnected) am able to get the LED to light up using ArduinoTestOSC.pd.</div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">There are a lot of unpackOSC messages telling me things like "Packet size (#) not a multiple of 4: dropping packet" but I think this is not a big problem right?</div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Thanks again!</div><div class="gmail_default"><font face="verdana, sans-serif">Rick</font></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jun 1, 2016 at 6:40 PM, Christof Ressi <span dir="ltr"><<a href="mailto:christof.ressi@gmx.at" target="_blank">christof.ressi@gmx.at</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">The CNMAT OSC library works well and I often used it with a serial connection. The documentation, however, is not so good and some of the examples are buggy. I attached some test sketches/patches I once made for a class presentation. The arduino sketch explains how to easily send and receive OSC messages via a serial connection (make sure you use the same baud rate on both sides!)<br>
<br>
Although OSC is convenient, it can be a waste of ressources if you send lots of messages. I often work with raw SLIP packages instead, where the first byte is used for addressing and the other bytes are the actual data (using some bit shifting to break up integers into several bytes). In the arduino code, use SLIPSerial.read() to fill an array (instead of an OSC message) and interpret your data as needed.<br>
<br>
You can also make your own simple protocol where you define a certain character to signify the start or end of a message. But how do you know if it's not part of the data? SLIP uses escape sequences to handle this case. Two alternative solutions:<br>
a) work with fixed length messages and count bytes (not very safe)<br>
b) reduce the range of possible values for your data (e.g. 0-127, like MIDI) and reserve the rest for addressing (128-255). If you need a greater resolution for your values, just break them up into several bytes. This way, sending a single 16 bit integer would take 4 bytes (address, bit 14-15, bit 13-7, bit 0-6).<br>
<br>
Christof<br>
<br>
Gesendet: Mittwoch, 01. Juni 2016 um 17:16 Uhr<br>
Von: "Martin Peach" <<a href="mailto:chakekatzil@gmail.com">chakekatzil@gmail.com</a>><br>
An: "<a href="mailto:pd-list@lists.iem.at">pd-list@lists.iem.at</a>" <<a href="mailto:pd-list@lists.iem.at">pd-list@lists.iem.at</a>><br>
Betreff: Re: [PD] Pduino sysex vs. OSC advice<br>
<br>
There's an OSC library for Arduino here:<br>
<a href="https://github.com/CNMAT/OSCUsing" rel="noreferrer" target="_blank">https://github.com/CNMAT/OSCUsing</a> SLIP it can communicate over serial line using [comport] on the Pd end.<br>
 Martin<br>
<div><div class="h5"> <br>
On Wed, Jun 1, 2016 at 10:29 AM, Rick Snow <<a href="mailto:ricksnow@gmail.com">ricksnow@gmail.com</a>[<a href="mailto:ricksnow@gmail.com">ricksnow@gmail.com</a>]> wrote:<br>
<br>
Hello list!<br>
 <br>
I am looking for some advice on sending messages from PD to an Arduino sketch.  Essentially, I plan to connect a mac to an Arduino via USB and control a large amount of variables within the Arduino sketch from PD.  <br>
 <br>
Is using the sysex message with the [arduino] object message the way to go with this?  How can I "tag" the messages so that they go to the correct variable in the arduino sketch?  Is there a practical limit to the speed of such a system?<br>
 <br>
I am much more familiar with using OSC messaging between applications but when I looked into using OSC with Arduino it seemed like I needed to use an ethernet shield (instead of connect via usb) and I would rather not go that route unless absolutely necessary.<br>
 <br>
Any advice is much appreciated!<br>
 <br>
cheers,<br>
Rick <br>
</div></div>_______________________________________________<br>
<a href="mailto:Pd-list@lists.iem.at">Pd-list@lists.iem.at</a>[<a href="mailto:Pd-list@lists.iem.at">Pd-list@lists.iem.at</a>] mailing list<br>
UNSUBSCRIBE and account-management -> <a href="https://lists.puredata.info/listinfo/pd-list[https://lists.puredata.info/listinfo/pd-list]" rel="noreferrer" target="_blank">https://lists.puredata.info/listinfo/pd-list[https://lists.puredata.info/listinfo/pd-list]</a><br>
 _______________________________________________ <a href="mailto:Pd-list@lists.iem.at">Pd-list@lists.iem.at</a> mailing list UNSUBSCRIBE and account-management -> <a href="https://lists.puredata.info/listinfo/pd-list[https://lists.puredata.info/listinfo/pd-list]" rel="noreferrer" target="_blank">https://lists.puredata.info/listinfo/pd-list[https://lists.puredata.info/listinfo/pd-list]</a></blockquote></div><br></div>