在APKPure安全快速地下载APK
APKPure 使用签名验证功能,确保为您提供无病毒的 Arduino Bluetooth Car HC-05 or APK 下载。
通过蓝牙控制基于RC车的Arduino或Raspberry Pi项目
该应用程序允许您通过蓝牙控制基于Arduino或Raspberry Pi的RC车。这是使用支持蓝牙的Android手机完成的。
***警告***
Arduino Bluetooth Car不会通过蓝牙搜索设备。首先,您必须配对手机的设置。
如果您有任何问题,可以联系我,我会帮助您。
请享用
您可以使用HC-05或HC-06
码:
void loop(){
if(bluetooth.available()){//检查数据是否来自串口
comando =“”;
while(bluetooth.available())
{
char x = bluetooth.read();
comando + = x;
}
if(comando ==“f”)
面前();
否则如果(comando ==“e”)
剩下();
否则如果(comando ==“r”)
对();
否则如果(comando ==“p”)
stopCar();
否则如果(comando ==“b”)
背部();
否则如果(comando ==“m”)
更多();
}