BLE Seeed Shield Arduino Uno

Can please someone help me. I am very stuck. I am using BLE Seeed Shield that I put on top my arduino, and put the jumpers on D0 for Rx and D1 for Tx.



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

Hello lanadelrey123d

Take a view to gain the knowledge:

hth

Hello Paul,
Yes i followed step by step what they saying and it's not working.

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.

Thanks in advance for your cooperation.

Okey Thank you. I am sorry.

1 Like

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.