08.08.14, 15:24
Hey all,
I'm trying to get the eventListener for incoming serial data to work, a kind person on the rhino newsgroup supplied me with the following code.
port.addEventListener(new gnu.io.SerialPortEventListener( { serialEvent: function( serialPortEvent ) { print("yay"); }} ) );
although the serial communication is working properly, I can send and receive data, the serialEvent is never triggered.
Thanks in advance!