This is a simple rust program that generates a QR code for connecting to a wifi network when scanned.
The program is heavily inspired by wifiqrcodegenerator.
``` $ git clone https://github.com/wckdouglas/wifi-qr-rs.git $ cd wifi-qr-rs $ cargo install --path . $ wifi-qr-rs -h Generating a QR code for connecting to a WIFI network
Usage: wifi-qr-rs [OPTIONS] --ssid
Options:
-s, --ssid
$ wifi-qr-rs \
--ssid my_network_name \
--auth-type wpa \
--password my_password \
--output-image my_qr_code.png
[2023-05-13T17:24:02Z INFO wifi_qr_rs] Creating QR code for SSID: "my_network_name" with authentication: [WPA]
[2023-05-13T17:24:02Z INFO wifi_qr_rs] Writting QR code image to: my_qr_code.png