I am trying to control servo robotic arm via bluetooth module hc05. All things connected properly. I am confused which control app will use. And also bluetooth does not send any data to arduino but light is blinking. If any one have robotic arm code, please share
I have tried almost all code from different website.
#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);
just need any app for controlling servo from Bluetooth,also trying to sent data from Bluetooth but nothing happened.