You are reading a single comment by @user73560 and its replies. Click here to read the full conversation.
  • Hi Gordon,

    Neither

    packets=10;
    NRF.setScan(function(d) {
      packets--;
      console.log(d); // print packet info
      if (packets<=0)
        NRF.setScan(); // stop scanning
    });
    
    

    nor

    NRF.findDevices(function(devices) {
      console.log(devices);
    }, 1000);
    

    return any results.

    I guess configuring GATT server with the sample configuration does not start the server itself.

    Another approach could be implementing a GATT server on Android.

About

Avatar for user73560 @user73560 started