Exemplo n.º 1
0
 /// <summary>Starts inquiring for devices</summary>
 public void InquireDevice()
 {
     _bluetooth.WriteString("\r\n+INQ=1\r\n");
 }
Exemplo n.º 2
0
 /// <summary>Enters pairing mode</summary>
 public void EnterPairingMode()
 {
     _bluetooth.WriteString("\r\n+INQ=1\r\n");
 }
Exemplo n.º 3
0
 internal Host(Bluetooth bluetooth)
 {
     _bluetooth = bluetooth;
     bluetooth.WriteString("\r\n+STWMOD=1\r\n");
 }
Exemplo n.º 4
0
 internal Client(Bluetooth bluetooth)
 {
     _bluetooth = bluetooth;
     _bluetooth.WriteString("\r\n+STWMOD=0\r\n");
 }