Hallo,
After finally 2 weeks I managed to get some progress with my HM-10 C2541 module.
- I followed first this tutorial.
Not all AT commands are working. But I managed to get "OK" when I write AT in the Arduino Serial Monitor and I managed to change the name to BLExAR instead of HMsoft.
2.I followed this tutorial and installed the sketch
#include <SoftwareSerial.h>
SoftwareSerial BTSerial(11, 10);
void setup() {
Serial.begin(9600);
BTSerial.begin(9600);
while(!Serial);
Serial.println("AT commands : OKAY");
}
void loop() {
if(BTSerial.available())
Serial.write(BTSerial.read());
if(Serial.available())
BTSerial.write(Serial.read());
}
With this I can send text from Arduino Serial Monitor to my BLExAR app, but the problem is that I cannot send from my BLExAR to my Arduino Serial Monitor.
What should be the problem?