OSC filter

Does the OSC filter work? Tried following, but nothing happens. What is wrong?

Parents Reply Children
  • Yeah it's a bit weird, but based on the #lightbox box_1 it would seem that the filter does work in the opposite direction.

    It has the following lines:

     

    // Add a filter so we don't get spammed with unwanted OSC messages from Eos
    OSCMessage filter("/eos/filter/add");
    filter.add("/eos/out/param/*");


    Which seems to suggest that it filters out everything but /eos/out/param/* as it needs /eos/out/param/pan and /tilt.

    My guess is the subscribe function tells Eos to send a message whenever the subscribed parameter changes, where the filter stops it sending other messages.

Related