frekel / MMM-wifistrength

MagicMirror² module to show wireless signal strength

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WifiStrength - MagicMirror² module

Build Status

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

Example Visualization

Installing the module

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

Updating the module

Pull the updates from git and update the dependencies in the module folder:

cd MMM-wifistrength
git pull
npm install

Using the module

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'
    }
  }
]

Configuration options

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

About

MagicMirror² module to show wireless signal strength


Languages

Language:JavaScript 97.1%Language:CSS 2.9%