// Use this for initialization
 void Start()
 {
     TapInputManager.OnTapped             += onTapped;
     TapInputManager.OnBluetoothTurnedOn  += onBluetoothOn;
     TapInputManager.OnBluetoothTurnedOff += onBluetoothOff;
     TapInputManager.OnTapConnected       += onTapConnected;
     TapInputManager.OnTapDisconnected    += onTapDisconnected;
     TapInputManager.setDebugLogging(true);
     TapInputManager.startTAPInputManager();
 }
 void setTextMode()
 {
     TapInputManager.setTextMode(_identifier);
 }
 void setControllerMode()
 {
     TapInputManager.setControllerMode(_identifier);
 }