MMM-KitchenTimer

Kitchen timer module for Magic Mirror

OTHER License

Stars
3

KitchenTimer

This is a module for MagicMirror.

It provides a touch-based, countdown timer. The buttons on the left add time to the timer (and start the timer if it's not started). The 'x' button resets the timer. Press the time to pause or restart the timer.

Using the module

Clone this repo into your modules directory. To use this module, add it to the modules array in the config/config.js file:

modules: [
    {
        module: "MMM-KitchenTimer",
        position: "top_left",
        config: {
            timertext: ["30s", "2m", "10m"],
            timersecs: [30, 120, 600],
        }
    },
]

Configuration options

The following properties can be configured:

Option Description
timertext An array giving the text in buttons.
timersecs An array with the number of seconds to add for the given button.