On Sat, 1 Feb 2020, 00:25 Dr. Maik Hester, <maik.hester@gmx.de> wrote:




-------- Weitergeleitete Nachricht --------
Betreff: Re: [PD] sending lists via [comport]
Datum: Fri, 31 Jan 2020 22:34:24 +0100
Von: Dr. Maik Hester <maik.hester@gmx.de>
An: hans w. koch <hansw.koch@gmail.com>
Kopie (CC): pd-list@lists.iem.at <pd-list@mail.iem.at>


Dear list,

the logic in the attached patch works fine, but I am still stuck at two different points:

The Arduino sends each digit of the values as a two-digit ascii. How do I get Arduino to send the complete values as integers instead?

Use Serial.write() instead of Serial.print(). I don't know what the rest of your patch/code does, so this could break things. But Serial.write()does send raw bytes and not ASCII.