All Projects → fewieden → MMM-AlarmClock

fewieden / MMM-AlarmClock

Licence: MIT license
Alarm Clock Module for MagicMirror²

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to MMM-AlarmClock

new-clock
The best clock app there is
Stars: ✭ 24 (-47.83%)
Mutual labels:  alarm, alarm-clock
homebridge-securitysystem
Homebridge plugin that creates a security system accessory that can be triggered by HomeKit sensors.
Stars: ✭ 114 (+147.83%)
Mutual labels:  alarm
alarmdotcom
Custom component to allow Home Assistant to interface with Alarm.com
Stars: ✭ 90 (+95.65%)
Mutual labels:  alarm
MMM-network-signal
MagicMirror2 solid network status
Stars: ✭ 31 (-32.61%)
Mutual labels:  magicmirror
unicorn-binance-websocket-api
An unofficial Python API to use the Binance Websocket API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, com-coin_futures, us, tr, jex, dex/chain+testnet) in a easy, fast, flexible, robust and fully-featured way.
Stars: ✭ 588 (+1178.26%)
Mutual labels:  webstream
Home-Monitoring-Raspberry-Pi-Node
Raspberry Pi & Node.js diy Home Monitoring & Intruder Alert system
Stars: ✭ 46 (+0%)
Mutual labels:  alarm
MMM-Fuel
Gas Station price Module for MagicMirror²
Stars: ✭ 47 (+2.17%)
Mutual labels:  magicmirror
MMM-MotionDetector
This is a motion detector module for MagicMirror
Stars: ✭ 32 (-30.43%)
Mutual labels:  magicmirror
homebridge-simplisafe3
A complete Homebridge plugin for SimpliSafe 3.
Stars: ✭ 82 (+78.26%)
Mutual labels:  alarm
MMM-Netatmo
A module for the MagicMirror to display informations about your rooms climate from your Netatmo system.
Stars: ✭ 26 (-43.48%)
Mutual labels:  magicmirror
MMM-Sonos
A module for the MagicMirror to display informations about the currently playing songs on your Sonos system.
Stars: ✭ 35 (-23.91%)
Mutual labels:  magicmirror
ioBroker.alarm
little alarm sytem for iobroker
Stars: ✭ 22 (-52.17%)
Mutual labels:  alarm
MMM-OpenmapWeather
This module loads current weather as images on Magic Mirror
Stars: ✭ 18 (-60.87%)
Mutual labels:  magicmirror
spotify-rise
⏰ Spotify alarm clock for Ubuntu Linux
Stars: ✭ 32 (-30.43%)
Mutual labels:  alarm
SwiftUIAlarm
⏰ An example Alarm-like app using SwiftUI which is introduced in WWDC19
Stars: ✭ 36 (-21.74%)
Mutual labels:  alarm
MMM-page-indicator
MagicMirror² module to display what page you're on.
Stars: ✭ 33 (-28.26%)
Mutual labels:  magicmirror
SmartMirror
My MagicMirror running on a Raspberry Pi
Stars: ✭ 110 (+139.13%)
Mutual labels:  magicmirror
Android-Alarm
This repository is an Alarm application, demonstrate how to use multiple pending intent to set alarm's time wake up. use popup menu, RecyclerView Adapter, use SQLite to store data
Stars: ✭ 25 (-45.65%)
Mutual labels:  alarm
MCP7940
Arduino Library to access the MCP7940M, MCP7940N and MCP7940x Real-Time chips
Stars: ✭ 29 (-36.96%)
Mutual labels:  alarm
smartalarm
Smart Alarm for Wear OS
Stars: ✭ 32 (-30.43%)
Mutual labels:  alarm

MMM-AlarmClock GitHub license Build Status Code Climate Known Vulnerabilities

Alarm Clock Module for MagicMirror2

Example

Active alarm Scheduled alarm

Dependencies

Installation

  • Clone this repo into ~/MagicMirror/modules directory.
  • Configure your ~/MagicMirror/config/config.js:
{
    module: 'MMM-AlarmClock',
    position: 'top_right',
    config: {
        alarms: [
            {time: "18:30", days: [2,4], title: "Soccer", message: "Get ready for soccer training!", sound: "alarm.mp3"},
            ...
        ],
        ...
    }
}

Config Options

Option Default Description
alarms REQUIRED An Array with all your alarms as objects. Those objects need to have the properties -> time: 24h format, days: Array of all days the alarm should be fired (0 = Sunday, 6 = Saturday), title, message, and sound. If sound is not defined, alarm will be fired with module defined/default alarm sound.
sound 'alarm.mp3' Name and extension of your alarm sound. File needs to be placed in ~/MagicMirror/modules/MMM-AlarmClock/sounds. Standard files are alarm.mp3 and blackforest.mp3. Alternatively specify a web stream http or https.
volume 1.0 The volume of the alarm sound in a range from 0.0 to 1.0
touch false If you are using a touch screen device you need to press a button to disable an alarm..
format 'ddd, h:mmA' In which format the alarm in the header should be displayed. All Options
timer 60000 (1 min) How long the alarm should ring for non touch screen or without interaction on touch screen devices.
fade false Set to enable a gradual fade-in of the alarm sound.
fadeTimer 60 * 1000 (1 min) How long to fade into the alarm before volume is set.
fadeStep .005 (.5%) Increase the volume this percent amount each second until fadeTimer is reached.
popup true Flag to show alert popup or not.

Alarm Options

Option Description
time Time at which the alarm should sound.
days Days of the week.
0 => Sunday, 1 => Monday, 2 => Tuesday, 3 => Wednesday, 4 => Thursday, 5 => Friday, 6 => Saturday

Example : [1, 2, 3, 4, 5], // From Monday to Friday.
title Title that will be displayed in the alert.
message Message of the alarm
sound Name or the url of the mp3 file. By default, the sound of the config will be use if this option is empty.
timer Timer when the alarm will end. By default, the timer of the configuration will be used.

Alarm Sounds

There are already two alarm sounds:

Developer

  • npm run lint - Lints JS and CSS files.
  • npm run docs - Generates documentation.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].