https://github.com/sheyabernstein/MMM-connection-status
Display internet connection status for MagicMirror2
https://github.com/sheyabernstein/MMM-connection-status
Last synced: about 1 year ago
JSON representation
Display internet connection status for MagicMirror2
- Host: GitHub
- URL: https://github.com/sheyabernstein/MMM-connection-status
- Owner: sheyabernstein
- License: mit
- Created: 2017-11-06T02:24:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-08-22T23:39:15.000Z (almost 3 years ago)
- Last Synced: 2024-11-06T14:41:25.807Z (over 1 year ago)
- Language: JavaScript
- Size: 84 KB
- Stars: 29
- Watchers: 4
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mmm - **MMM-Connection-Status**
README
# MMM-connection-status
Display internet connection status for MagicMirror2
## Screenshots

## Dependencies
* An installation of [MagicMirror2](https://github.com/MichMich/MagicMirror)
## Installation
1. Clone this repo into `~/MagicMirror/modules` directory.
2. Configure your `~/MagicMirror/config/config.js`:
```
{
module: 'MMM-connection-status',
header: "Internet Connection",
position: 'top_left', // Or any valid MagicMirror position.
config: {
// See 'Configuration options' for more information.
}
}
```
## Configuration Options
| **Option** | **Default** | **Description** |
|---------------------|---------------------|------------------------------------------|
| `updateInterval` | `60000` | Time in ms to wait between updating |
| `initialLoadDelay` | `0` | Time in ms to wait until start |
| `animationSpeed` | `250` | Fade animation time |
| `connectedColor` | `var(--color-text)` | Text color when internet is connected |
| `disconnectedColor` | `var(--color-text)` | Text color when internet is disconnected |