Hi,
How to add multiple wifi connections to Luckfox Pico Ultra w.
I have added wpa_supplicant.conf like below.
ctrl_interface=/var/run/wpa_supplicant
ap_scan=1
update_config=1
network={
ssid="Home24GHz"
psk="Joxxxxxx"
key_mgmt=WPA-PSK
}
network={
ssid="Office2.4GHz"
psk="Boxxxxxx"
key_mgmt=WPA-PSK
}
May I know is this correct
Thanks,
Naveen
How to add multiple wifi connections to Luckfox Pico Ultra w
Hello, there is no problem with your settings. If necessary, you can add the "priority" attribute to set the priority to ensure that two wifi can be connected at the same time. You can choose the one you want.Like this:
Code: Select all
network={
ssid="xxx"
psk="xxx"
key_mgmt=WPA-PSK
priority=1
}