Hi I have the HC-06 Bluetooth.
I have the problem that I can not connect with my Arduino Uno
The module I think it goes well, I downloaded https://play.google.com/store/apps/details?id=eu.jahnestacado.arduinorc and can connect to the device.
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); // RX, TX
void setup()
{
Serial.begin(9600);
Serial.println("Goodnight moon!");
mySerial.begin(9600);
mySerial.println("Hello, world?");
}
void loop()
{
if (mySerial.available())
Serial.write(mySerial.read());
if (Serial.available())
mySerial.write(Serial.read());
}
And nothing, somo me appears “Goodnight moon” in console.
Any solution?
Thank you