BLUETOOTH
-
자마린에서 블루투스 연결하기Xamarin 2021. 10. 14. 12:39
1. Nuget 에서 Plugin.BLE 설치하기. 2. 블루투스 연결 가능인지 확인하기. public bluetooth() { IBluetoothLE ble; ble = CrossBluetoothLE.Current; var state = ble.State; //state 는 여러가지가 있으니 확인. if (state.ToString() != "On") { displayNotice(); } ble.StateChanged += (s, e) => { if(e.NewState.ToString() != "On") { displayNotice(); } }; } private async void displayNotice() { await DisplayAlert("알림", "블루투스가 꺼져 있습니다. 블루투스를 켜주..