我正在尝试通过蓝牙模块 hc05 控制伺服机械臂。所有东西都正确连接。我很困惑将使用哪个控制应用程序。而且蓝牙也不会向arduino发送任何数据,但灯在闪烁。谁有机械臂代码,请分享
我已经尝试了来自不同网站的几乎所有代码。
#include <SoftwareSerial.h> // TX RX software library for bluetooth
#include <Servo.h> // servo library
Servo myservo1, myservo2, myservo3, myservo4; // servo name
int bluetoothTx = 10; // bluetooth tx to 10 pin
int bluetoothRx = 11; // bluetooth rx to 11 pin
SoftwareSerial bluetooth(bluetoothTx, bluetoothRx);
只需要任何用于从蓝牙控制伺服的应用程序,也尝试从蓝牙发送数据但没有任何反应。