티스토리 뷰
[MainActivity]
val deviceAddress = "00:00:00:00:00:00" // Replace with the address of your Bluetooth device
val bluetoothAdapter: BluetoothAdapter? = BluetoothAdapter.getDefaultAdapter()
// Check if device supports Bluetooth
if (bluetoothAdapter == null) {
// Device does not support Bluetooth
} else {
// Device supports Bluetooth
// Check if Bluetooth is enabled on device
if (!bluetoothAdapter.isEnabled) {
// Request to enable Bluetooth
val enableBtIntent = Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE)
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT)
}
// Get the Bluetooth device by its address
val device: BluetoothDevice = bluetoothAdapter.getRemoteDevice(deviceAddress)
// Check if the device is already paired
if (device.bondState == BluetoothDevice.BOND_BONDED) {
// Device is already paired, no need to pair again
} else {
// Device is not paired, initiate pairing
val pairingIntent = Intent(BluetoothDevice.ACTION_PAIRING_REQUEST)
pairingIntent.putExtra(BluetoothDevice.EXTRA_DEVICE, device)
pairingIntent.putExtra(BluetoothDevice.EXTRA_PAIRING_VARIANT, BluetoothDevice.PAIRING_VARIANT_PIN)
startActivityForResult(pairingIntent, REQUEST_PAIRING)
}
}
반응형
'SWDesk > App' 카테고리의 다른 글
[Kotlin] 블루투스 기기와의 연결 설정을 위한 소스 코드 (0) | 2023.02.26 |
---|---|
웹뷰 내 사용자 클릭 결과를 처리하기 위한 자바 소스 코드 (0) | 2023.02.26 |
[Kotlin] Nano33 IoT 기기와 데이터 통신하기 (2) | 2023.02.20 |
[Kotlin] Nano33 IoT 기기에 "Hello" 보내기 (0) | 2023.02.17 |
[Kotlin] Bluetooth Application in Android (0) | 2023.02.14 |
반응형
250x250
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 혁신
- BSC
- 전압
- Innovation&Hurdles
- 전류
- 오블완
- 혁신과허들
- ServantClock
- 심심풀이
- 절연형
- 티스토리챌린지
- Innovations
- Video
- 아두이노
- Innovations&Hurdles
- Decorator
- 심심풀이치매방지기
- 치매
- 배프
- 전압전류모니터링
- Hurdles
- image
- badp
- arduino
- 치매방지
- DYOV
- 빌리언트
- bilient
- 둎
- 허들
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함