Exemplo n.º 1
0
 public void Release()
 {
     Debug.Log("GemSDK: Disconnection from \"" + addressStr + "\" -> " + NativeWrapper.gemDisconnect(address).ToString());
 }
Exemplo n.º 2
0
        public void Connect()
        {
            var result = NativeWrapper.gemInitialize();

            Debug.Log("GemSDK: initialization -> " + result.ToString());
        }
Exemplo n.º 3
0
        public void Connect()
        {
            GemStatusCode result = NativeWrapper.gemConnect(address);

            Debug.Log("GemSDK: Connection to \"" + addressStr + "\" -> " + result.ToString());
        }