• Hi Gordon,
    I've loaded the cutting edge build 2v14.64.
    Now it shows the devices but fails to device.gatt.connect();
    It shows:

    var device;
    var gatt;
    
    NRF.requestDevice({filters:[{services:["­1805"]}]}).then(function(d) {
        device = d;
        console.log("Found device: "+d.name);
        return device.gatt.connect();
      }).then(function(ga) {
        gatt = ga;
        console.log("Connected");
      }).catch(function(e) {
        console.log(e);
      });
    
    WARNING: Unknown phy "undefined"
    Found device: Pixel 4a
    ERR 0x7 (INVALID_PARAM)
    
About

Avatar for Mark_M @Mark_M started