DEV Community

Cover image for Joining a Wi-Fi network with style!
Predrag Mijatovic
Predrag Mijatovic

Posted on

Joining a Wi-Fi network with style!

If you need a guest Wi-Fi network for your home, office, or a coffee shop, you might as well do it with style!

https://youtu.be/APTqu29ApRc

You'll need a Wi-Fi network (:D) and a small computer screen - I used Raspberry Pi Pico with a 64x128 pixels display.

To generate a QR Code that will be recognized by your phone, the string you encode must be in a proper format:

WIFI:S:<SSID>;T:<WEP|WPA|blank>;P:<PASSWORD>;H:<true|false|blank>;

Depending on your screen size, you might have to adjust the SSID + password length, so that QR Code can be displayed on a screen that size.

Depending on which SBC you use, the code to display the QR Code will be different, but for Pico I used MicroPython.

Detailed instructions and a few tricks available at https://github.com/predmijat/qr_wifi

I hope you like it!

Top comments (0)