Hi there,
Im trying to control video mixer by midi from arduino by using standart midi library. I would like to send simultaneously some integers to processing. Code to control mixer is very simple, the problem is with sending integers to processing since midi overtook port 31250. Is there any way to have also 9600 for communication with computer ?. I was trying to use SoftwareSerial but no results. Any advices ?
You can have ONE device/application on the other end of the serial port. It doesn't matter what the baud rate of that device is. If you are sending MIDI data via the Serial instance (using hardware serial pins 0 and 1) you can NOT also send data to another application.
You could write an application on the PC that gets the serial data and sends it to two different application, on other serial ports.