APKPure에서 안전하고 빠른 APK 다운로드
APKPure는 바이러스 없는 Arduino Bluetooth Car HC-05 or APK 다운로드를 위해 서명 확인을 사용합니다.
Bluetooth를 통한 Arduino 또는 Raspberry Pi 프로젝트 기반 RC 카 제어
이 응용 프로그램은 Bluetooth를 통해 Arduino 또는 Raspberry Pi 기반 RC 카를 제어 할 수 있습니다. 이 작업은 Bluetooth 지원 Android 휴대 전화를 사용하여 수행됩니다.
***경고***
Arduino Bluetooth Car는 블루투스로 장치를 검색하지 않습니다. 먼저 휴대 전화 설정을 통해 페어링해야합니다.
문제가 있으면 저에게 연락하면 도와 드리겠습니다.
즐겨
HC-05 또는 HC-06을 사용할 수 있습니다.
암호:
무효 루프 () {
if (bluetooth.available ()) {// 데이터가 직렬 포트에서 들어오는 지 확인합니다
comando = "";
while (bluetooth.available ())
{
char x = bluetooth.read ();
comando + = x;
}
if (comando == "f")
앞();
else if (comando == "e")
왼쪽();
else if (comando == "r")
권리();
else if (comando == "p")
stopCar ();
else if (comando == "b")
뒤로();
else if (comando == "m")
더();
}