I have an Arduino Nano connected to a NRF24I0+ module. The NRF module is using the BTLE library https://github.com/floe/BTLE
Here is the snippet that is sending the information: (Nano & NRF24l0+)
Code: Select all
RF24 radio(6, 9);
BTLE btle(&radio);
btle.begin("foobar");
// Above this line is in the setup function, below is in the loop function
buf[0] = "Test";
if(!btle.advertise(0x16, &buf, sizeof(buf))) {
Serial.println("BTLE advertisement failure");
}
btle.hopChannel();
delay(1000);
Edit: Here is the program I have used on the ESP32, the scan returns nothing found:
https://github.com/nkolban/ESP32_BLE_Ar ... E_scan.ino
Thank you.