• Thank you for the response - I've updated the puck.js code to include the "active:true" below, and I've included a full list of the devices that are seen by the puck.

    setWatch(function(e) {
    
      NRF.findDevices(function(devices) {
        print(devices);
      }, {timeout : 2000,
          active : true, 
          filters : [
            { manufacturerData:{0x00D6:{}}}
          ]
         });
    }, BTN, { edge: "falling", repeat: true, debounce: 50 });
    
    [
      BluetoothDevice: {
        "id": "2d:3b:c7:59:79:b0 private-nonresolvable",
        "rssi": -50,
        "data": new Uint8Array([2, 1, 26, 11, 255, 76, 0, 9, 6, 3, 191, 192, 168, 0, 10]).buffer,
        "manufacturer": 76,
        "manufacturerData": new Uint8Array([9, 6, 3, 191, 192, 168, 0, 10]).buffer
       },
      BluetoothDevice: {
        "id": "47:b8:c7:f3:29:b4 private-resolvable",
        "rssi": -69,
        "data": new Uint8Array([3, 3, 159, 254, 23, 22, 159, 254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]).buffer,
        "services": [
          "fe9f"
         ],
        "serviceData": {
          "fe9f": new ArrayBuffer(20)
         }
       },
      BluetoothDevice: {
        "id": "70:10:8f:e4:08:a5 private-resolvable",
        "rssi": -49,
        "data": new Uint8Array([2, 1, 26, 2, 10, 12, 10, 255, 76, 0, 16, 5, 78, 28, 90, 249, 167]).buffer,
        "manufacturer": 76,
        "manufacturerData": new Uint8Array([16, 5, 78, 28, 90, 249, 167]).buffer
       },
      BluetoothDevice: {
        "id": "7f:bb:91:1f:68:11 private-resolvable",
        "rssi": -50,
        "data": new Uint8Array([2, 1, 26, 2, 10, 12, 11, 255, 76, 0, 16, 6, 61, 30, 200, 213, 243, 249]).buffer,
        "manufacturer": 76,
        "manufacturerData": new Uint8Array([16, 6, 61, 30, 200, 213, 243, 249]).buffer
       },
      BluetoothDevice: {
        "id": "ff:8d:05:ae:17:64 random",
        "rssi": -45,
        "data": new Uint8Array([2, 1, 6, 2, 10, 0, 17, 6, 158, 202, 220, 36, 14, 229, 169, 224, 147, 243, 163, 181, 1, 0, 64, 110]).buffer,
        "services": [
          "6e400001-b5a3-f393-e0a9-e50e24dcca9e"
         ]
       },
      BluetoothDevice: {
        "id": "68:6b:cd:8a:7a:e2 private-resolvable",
        "rssi": -76,
        "data": new Uint8Array([2, 1, 26, 2, 10, 7, 10, 255, 76, 0, 16, 5, 114, 28, 211, 224, 196]).buffer,
        "manufacturer": 76,
        "manufacturerData": new Uint8Array([16, 5, 114, 28, 211, 224, 196]).buffer
       },
      BluetoothDevice: {
        "id": "df:f6:01:75:33:e8 random",
        "rssi": -75,
        "data": new Uint8Array([7, 255, 76, 0, 18, 2, 0, 0]).buffer,
        "manufacturer": 76,
        "manufacturerData": new Uint8Array([18, 2, 0, 0]).buffer
       }
     ]
    
About

Avatar for user158306 @user158306 started