sorry for the bad tranlation.
i would just like to ask how to program AT comands of bluetooth without typing anything. for example i will command the arduino to type "AT+INQ" but i am not the one who will type it, it will run on its own after i compile the program that i am not typing the command.thank you very much
program draft from net
?#?define? rxPin 10
#define txPin 11
SoftwareSerial BTSerial = SoftwareSerial(rxPin, txPin); // RX | TX
void setup()
{
pinMode(9, OUTPUT); // this pin will pull the HC-05 pin 34 (key pin) HIGH to switch module to AT mode
digitalWrite(9, HIGH);
Serial.begin(9600);
Serial.println("Enter AT commands:");
BTSerial.begin(9600); // HC-05 default speed in AT command more
}
void loop()
{
// Keep reading from HC-05 and send to Arduino Serial Monitor
if (BTSerial.available())
{ Serial.write(BTSerial.read());
BTSerial.println("AT+INQ"); delay(5000);
}
// Keep reading from Arduino Serial Monitor and send to HC-05
if (Serial.available())
BTSerial.write(Serial.read());
}