TeraTech / MMM-WiFiPassword

Magic Mirror Module that displays your WiFi network, password with QRCode
MIT License
99 stars 19 forks source link

Display more than one QR Code/Network Information #11

Closed ivobrowny closed 3 years ago

ivobrowny commented 3 years ago

Is your feature request related to a problem? Please describe. I have more than one WiFi network, i.e. a 5GHz and a 2.4GHz band.

Describe the solution you'd like Hence, I would love to be able to display both QR Codes at the same time, either stacked or next to each other.

Could this be implemented?

TeraTech commented 3 years ago

Is there a problem with using this module twice in your main config file like this:

  modules:[
    {
      module: 'MMM-WiFiPassword',
      position: "top_left",
        config: {
          //See 'Configuration options' for more information.
          network: "my_network", 
          password: "my_pass",
        }
    },
    {
      module: 'MMM-WiFiPassword',
      position: "top_left",
        config: {
          //See 'Configuration options' for more information.
          network: "my_network2", 
          password: "my_pass2",
        }
    },
  ]
TeraTech commented 3 years ago

Assuming that suggestion to use 2 modules was enough. Closed