Ejemplo n.º 1
0
 public ScanViewModel()
 {
     Title      = "Scan Device";
     IsScanning = false;
     SetBleConnected();
     if (BleConnected)
     {
         ConnectingInfo = $"Connected : {Bluetooth.Instance.DeviceName}";
     }
     else
     {
         ConnectingInfo = "Not connected";
     }
     Scan.Execute(null);
 }