Multiple ssid's

Hey Mycroft
Are you able to use different networks with a picroft? I would like to be able to use him at work and at home. If so could somebody point me to the code I would need to edit and how.
Thanks

This is not a Mycroft specific thing, but Linux/Debian related. You want to edit your /etc/wpa_supplicant/wpa_supplicant.conf for that.
See here for more detailed information.

3 Likes

As @Dominik rightly says, it’s something from Linux/Debian that’s not related to Mycroft.

I leave you a link from someone who wanted to do the same with a reaspberry pi.

Hi @aaron57
Interested to hear how you went getting this setup? Did the links provided help?

Simply

sudo nano /etc/wpa_supplicant/wpa_supplicant.conf

to have two networks, don’t change the interface file. Not longer necessary. Here is my conf without the passes

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=US

network={
        ssid="name1"
        psk="pass1"
        id_str="home"
}


network={
        ssid="name2"
        psk="pass2"
        id_str="mobile"
}
1 Like