Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sheyabernstein/MMM-connection-status
Display internet connection status for MagicMirror2
https://github.com/sheyabernstein/MMM-connection-status
Last synced: 8 days 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-08-22T23:39:15.000Z (about 1 year ago)
- Last Synced: 2024-08-02T16:46:21.653Z (3 months ago)
- Language: JavaScript
- Size: 84 KB
- Stars: 28
- Watchers: 4
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MMM-connection-status
Display internet connection status for MagicMirror2## Screenshots
![Preview-Sources](docs/preview.png "Screenshot")
## 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 |