Loading...
Logo
Processing Forum
Hi There
I can get my sketch sending but not recieving, it did receive for a while, but not anymore.
Heres how im receiving the data, the inputs are ints
Copy code
  1. void oscEvent(OscMessage theOscMessage)
  2. {
  3.   oscP5.plug(this,"freq1","/freq1");
  4.   oscP5.plug(this, "freq2", "/freq2");
  5.   oscP5.plug(this, "amp1", "/amp1"); 
  6.   oscP5.plug(this, "amp2", "/amp2");
  7. }
I think ive missed something obvious.
Any help would be kindly appreciated
Thanks
MT