Hello Everyone!
I am trying to get to HC-05 to interface with each other on different Arduinos(same exact model) and none of them are not responding to any of the commands like "AT". All I am getting is "ERROR: (0)" on startup of the code and then nothing else when I type in the AT commands. Also yes I put it in AT command mode.
This is the guide I am using:
https://www.instructables.com/Arduino-Two-Way-Communication-Via-Bluetooth-HC-05/
This is my code if it has anything to do with this issue:
#include <SoftwareSerial.h>
SoftwareSerial Bluetooth(3,2);
void setup() {
Serial.begin(9600);
Bluetooth.begin(38400);
}
void loop() {
if (Bluetooth.available())
Serial.write(Bluetooth.read());
if (Serial.available())
Bluetooth.write(Serial.read());
}
Thanks for the help in advance!