RaspberryPizero에서 블루투스 시리얼 통신을하는 방법
RaspberryPi와 Android 스마트 폰을 블루투스로 통신하고 싶습니다.
RaspberryPizero 소개
블루투스로 시리얼 통신
만든 것, 만드는 법
RaspberryPizero 편
sudo apt-get install bluez
sudo apt-get install bluetooth blueman bluez-tool
블루투스 페어링
sudo bluetoothctl -a
scan on //ペアリング対象のアドレスを確認
scan off
pair <ペアリング対象のアドレス>
trust <ペアリング対象のアドレス> //次回起動時に自動接続
Bluetooth SPP (직렬 통신) 설정
ExecStart=/usr/lib/bluetooth/bluetotthd -C
ExecStartPost=/usr/bin/sdptool add SP
블루투스 직렬 연결을 C 언어에서 사용
sudo apt-get install libbluetooth-dev
gcc <.cファイル> -o <出力ファイル> -lbluetooth
Android 앱편
코드 수정
private static final UUID MY_UUID_SECURE =
UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
연결
미래의 도전
Reference
이 문제에 관하여(RaspberryPizero에서 블루투스 시리얼 통신을하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/akihiro01051/items/2f8336985f15f8d1b131텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)