Eos OSC no responses.

I am trying to create an OSC client for EOS and I would like to get the command line. I am able to send MSC commands over a UDP connection, but no replies from EOS . I would like to receive the commandline at a minimum '/eos/out/cmd'.

I am using a RawDatagramSocket in dart to send OSC messages. Eos is responding to keypresses by filling the commandline, but Eos does not respond with anything. I am trying to listen on port 8001 for a response, but I am not sure if there is anything I am doing wrong here.

I am not sure if anyone is a programmer here, but here is my code interacting with ETC Eos: github.com/.../osc_control.dart

Parents
  • I'm not familiar with the libraries you are using and am too lazy to dig into them. Most of my OSC experience is with embedded processors and the CNMAT/OSC library.

    The diagnostics tab (Tab 99) will confirm Eos is sending and receiving OSC messages. That will help isolate the problem to your code.

    If Eos is not sending /eos/out/<whatever> messages in response to your /eos/<whatever> message then confirm OSC TX is enabled and OSC UDP TX Port is set to 8001.


    After that, it's likely due to your code. /eos/subscribe and/or eos/filter can suppress responses. SLIP settings may influence whether your OSC library can decode the message.

    Wireshark is a useful tool in the early stages of debugging an OSC app.

  • Thanks  . I have been using the diagnostics tab and I can see the packets going out, but I do not see them going through wireshark unless they are encrypted. the library I am using relies on UDP.  Below is my Configuration and output. I am suing OSC 1.0 and not SLIP 1.1. 

Reply Children
Related