Beispiel #1
0
 internal Host(Bluetooth bluetooth)
 {
     _bluetooth = bluetooth;
     bluetooth.WriteString("\r\n+STWMOD=1\r\n");
 }
Beispiel #2
0
 internal Host(Bluetooth bluetooth)
 {
     _bluetooth = bluetooth;
     bluetooth._dataWriter.WriteString("\r\n+STWMOD=1\r\n");
     bluetooth._dataWriter.Store();
 }
Beispiel #3
0
 internal Client(Bluetooth bluetooth)
 {
     _bluetooth = bluetooth;
     _bluetooth.WriteString("\r\n+STWMOD=0\r\n");
 }
Beispiel #4
0
 internal Client(Bluetooth bluetooth)
 {
     _bluetooth = bluetooth;
     _bluetooth._dataWriter.WriteString("\r\n+STWMOD=0\r\n");
     _bluetooth._dataWriter.Store();
 }