Examples of OSCMessage


Examples of oscP5.OscMessage

      // y se prepare para recibir al visitante
      // El mismo mensaje lo mando a la terminal   

      logger.info("SENDING AKG TO VISUAL + TERMINAL");

      OscMessage myMessage = new OscMessage("/visitorReady")

      myMessage.add( checkName(v.getName1()));
      myMessage.add( checkName(v.getName2()));
     
      oscGateway.send(myMessage, oscVisualLocation);
      oscGateway.send(myMessage, oscTerminalLocation);

    }else{

      logger.info("VISITOR DOESNT EXISTS");

      // el codigo ingresado es incorrecto
      // responde negativo solo a la terminal
      OscMessage myMessage = new OscMessage("/visitorError")
      oscGateway.send(myMessage, oscTerminalLocation);

    }
  }
View Full Code Here

Examples of oscP5.OscMessage



  private void visualStatus(){

    OscMessage myMessage = new OscMessage("/pingVisual");   
    oscGateway.send(myMessage, oscTerminalLocation);

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.