Nobody
Nobody
> the pip installed version. What that did is pulling the lib from a different git. “os.uname” was the clue 😉
Maybe you're using the wrong library? Which version are you using? (https://github.com/vshymanskyy/blynk-library-python/tree/master)
try this: ``` # version 1.9 compatibility try: ssid = match.group(1).decode("utf-8").replace("%3F", "?").replace("%26", "&") password = match.group(2).decode("utf-8").replace("%3F", "?").replace("%26", "&") except Exception: ssid = match.group(1).replace("%3F", "?").replace("%26", "&") password = match.group(2).replace("%3F", "?").replace("%26", "&")...
> @ebolisa's suggestion has been added as default behavior in the [captive portal version](https://github.com/graham768/MicroWiFiManager) of this awesome library Instead of adding all possible combination of characters, why not adding a...
I believe "None" is used to force the code to go into AP. I've been wrong in the past so... ``` import wifimgr wlan = wifimgr.get_connection() if wlan is None:...
Hi, I've full control of the Rpi board but not of the display so, yes, I need to reboot.
Why blocking the ssid's names? Even if I was your neighbor and being able to view them, I'd still need their passwords to hop on the local networks 😉
> Did you check to see if bug exists already ? https://github.com/FreeCAD/FreeCAD/issues?q=state%3Aopen%20label%3A%22Mod%3A%20Measurement%22 > > Can you zip up an example file and drag/drop it into Github textbox ? Sure. I...
> Maybe it's got something to do with that: The else statement [here](https://github.com/peterhinch/micropython-mqtt/blob/master/mqtt_as/__init__.py#L761) seems to be wrongly indented. It looks like that code should be executed after the for loop...
> On Arduino Nano RP2040 connecting to WiFi fails due to line `s.config(pm=0xA11140)` which throws `ValueError: AP required`. I'm on MicroPython 1.26.1 and Nina FW 2.0.0. You know that line...