Multiple wifi connections

I am just wondering how I would create multiple wifi connections in the octopi-wpa-supplicant.txt
so i could take my Pi between home and school?

Try creating multiple sections under network, one for each one.

network={
 ssid="My-Home-SSID"
 psk="myhomewifipassword"
}

network={
 ssid="My-School-SSID"
 psk="myschoolwifipassword"
}

1 Like

wow, quick response, thanks for that, I'll give it a go!