한 걸음 두 걸음
안드로이드 시스템 프로그래밍 #06 ] Bluetooth 본문
반응형
블루투스
API
- android.bluetooth
- android.bluetooth.le : 블루투스를 low energy로 사용할 수 있게 해줍니다. (ex) 비콘
참고 URL : https://developer.android.com/reference/android/bluetooth/package-summary.html?hl=ko
제공 기능
- 블루투스 설정
- 주변 블루투스 장치 검색
- 다른 블루투스 장치(client or server)와 연결
- 장치간의 데이터 전송
이를 통해 Proximity를 감지할 예정.
androi에서 Bluetooth사용하기
BluetoothAdapter 사용
기능 : 주변 블루투스 검색 .JELLY_BEAN_MR1 이하 getDefaultAdapter() 메소드 이용
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();JELLY_BEAN_MR2 이상 BluetoothManager 이용
버전이 업데이트 됨에 따라 아래와 같이 사용하기 시작함!!'=BluetoothManager bm = (BluetoothManager)getSystemService(BLUETOOTH_SERVICE); BluetoothAdapter mBluetoothAdapter = bm.getAdapter();
로 활용합니다,
반응형
'FrontEnd > mobile system programming' 카테고리의 다른 글
안드로이드 시스템 프로그래밍 #07 ] Power (0) | 2019.04.10 |
---|---|
모시프과제 ] Wifi Manager - RSSI 값 평균내어 출력하기 (4) | 2019.04.02 |
안드로이드 시스템 프로그래밍 #05 ] WiFi Manager (0) | 2019.03.26 |
안드로이드 시스템 프로그래밍 #04 ] 근접 정보 활용하기 (0) | 2019.03.20 |
Location Provider 종류 GPS / Network (Cello)/ Passive (WiFi AP) (0) | 2019.03.19 |