BluetoothHID2 [Android] Bluetooth HID 키보드 앱 만들기 2. Bluetooth 연결/전송 Bluetooth 연결 BluetoothHIDdevice를 이용하여 핸드폰을 키보드로 인식되도록 하고 연결한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 BluetoothHidDeviceAppSdpSettings sdp = new BluetoothHidDeviceAppSdpSettings( "BleHidKeyboard", "Android BLE HID Keyboard", "Android", (byte) 0x00, descriptor ); mBtHidDevice.registerApp(sdp, null, mBluetoothHidDeviceAppQosSettings, Executors.newSingleThreadExecutor(), new BluetoothHidDevice.Callbac.. 2021. 3. 4. [Android] Bluetooth HID 키보드 앱 만들기 1. Bluetooth 준비하기 프로그램 개요 Android 9(API Level 28, Pie)에서 새로 추가된 기능으로 핸드폰을 Bluetooth HID로 사용할 수 있도록 지원하고 있습니다. 이 기능을 통하여 핸드폰을 키보드, 마우스, 게임 패드 등의 입력장비로 사용 가능 합니다. 프로그램 작동 원리 Bluetooth 설정하기 블루투스 기기의 정보를 취득 후에는 활성화한 HID 서비스와 통신할 수 있도록 프록시(BluetoothHidDevice)를 가져와야 합니다. 처음으로 블루투스를 활성화 하고 블루트스 어댑터를 가져옵니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 private BluetoothAdapter mBtAdapter = BluetoothAdapter.getDefaultAdapter(); @Overr.. 2021. 3. 4. 이전 1 다음