Here's my Arduino code: #include <SoftwareSerial.h>
SoftwareSerial hm11(0, 1); // RX, TX
void setup() {
Serial.begin(9600);
hm11.begin(9600);
delay(100);}
void loop() {
if (hm11.available()) {
char c = hm11.read();
Serial.print(c);}
if (Serial.available()) {
char c = Serial.read();
hm11.print(c);}}
I want to send commands via my serial monitor so i can set the BLE as i wanted to be and pair it in my App inventor APP
My problem is i receive nothing back from my serial monitor. Absolutely nothing, Please Help me
I moved your topic to a more appropriate forum category @lanadelrey123d.
In the future, please take the time to pick the forum category that best suits the subject of your question. There is an "About the _____ category" topic at the top of each category that explains its purpose.