This is a module for MagicMirror² to
show the strength of your WiFi signal.
This is a port of qistoph version! (Props to him!)
I needed some design changes for my Mirror
To install the module, just clone this repository to your modules folder and install the dependencies:
git clone 'https://github.com/frekel/MMM-wifistrength.git'
cd MMM-wifistrength
npm install
Pull the updates from git and update the dependencies in the module folder:
cd MMM-wifistrength
git pull
npm install
To use this module, add it to the modules array in the config/config.js
file:
modules: [
{
module: 'MMM-wifistrength',
position: 'top_center',
config: {
device: 'wlan0'
}
}
]
The following properties can be configured:
Option | Description |
---|---|
device |
The wlan-interface to get the signal strength for. Default value: wlan0 |
realoadInterval |
Number of milliseconds between refresh. Default value: 120000 (2 minutes) |
size |
The size of the icon to show. Default value: 40 |