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