Example #1
0
 // Update is called once per frame
 void Update()
 {
     Receiver.Bind(address_beta, ReceiveDoubleBeta);
     Receiver.Bind(address_alpha, ReceiveDoubleAlpha);
     Debug.Log(deviceName + "beta" + betaScore);
     Debug.Log(deviceName + "alpha" + alphaScore);
     num++;
     if (num == 5)
     {
         Receiver.UnbindAll();
         num = 0;
     }
 }