You are reading a single comment by @MaBe and its replies. Click here to read the full conversation.
  • Does this Wifi scan snippet work for you?

    require('Wifi').scan(function(e) {
      console.log(e);
    });
    
    /*
    output:
    [
      { "rssi": -78, "channel": 1, "authMode": 4, "isHidden": false,
        "ssid": "SSID1",
        "mac": "b8:8d:12:68:24:3f"
       },
      { "rssi": -52, "channel": 1, "authMode": 4, "isHidden": false,
        "ssid": "SSID2",
        "mac": "a2:a0:bb:f2:04:59"
       }
     ]
    
    */
    
  • Hello @MaBe,
    Yes, this one has returned me local wifi ap (just for info I have 1.93v).
    Now I can write a workaround just parsing it passing the correct value in ssid and password. Will try it today.

    Thanks!

About

Avatar for MaBe @MaBe started