Monitors internet statistics such as strength and speed information on a smart mirror.
To install the module, just clone this repository to your modules folder: git clone https://github.com/ronny3050/internet-monitor.git internet-monitor
.
Then run cd internet-monitor
and npm install
which will install the dependencies.
To use this module, add it to the modules array in the config/config.js
file:
modules: [
{
module: 'internet-monitor',
position: 'top_center',
header: 'Internet Monitor',
config:{
type: '',
maxTime: 20000,
updateInterval: 0,
verbose: false,
displayStrength: true,
displaySpeed: true,
strengthIconSize: 80,
maxGaugeScale: 100,
},
}
]
You can also customize the wifi symbol.
modules: [
{
module: 'internet-monitor',
position: 'top_center',
header: 'Internet Monitor',
config:{
type: '',
maxTime: 20000,
updateInterval: 0,
verbose: false,
displayStrength: true,
displaySpeed: true,
strengthIconSize: 80,
maxGaugeScale: 100,
wifiSymbol:{
size: 50,
fullColor: '#3afc25',
almostColor: '#ffff0c',
halfColor: '#ff8c00',
noneColor: '#ff1111'
},
},
}
]
The following properties can be configured: