Files
mmm-myq/README.md
2021-08-24 21:41:13 -05:00

1.6 KiB

MMM-MyQ

GitHub license

MyQ module for MagicMirror². Enables display and control of MyQ devices (specifically garage door openers) from Chamberlain, LiftMaster.

Currently only supports garage doors. Support for lights/other MyQ devices is possible, but not currently planned.

Dependencies

Installation

  1. Clone this repo into MagicMirror/modules directory.

  2. Configure your MagicMirror/config/config.js:

    {
        module: 'MMM-MyQ',
        position: 'top_right',
        config: {
            email: 'you@example.com',
            password: 'correct horse battery staple'
        }
    }
    
  3. Run command npm install --production in your modules/MMM-MyQ directory.

Config Options

Option Default Description
email '' Your MyQ login address. (required)
password '' Your MyQ login password. (required)
types ['wifigaragedooropener'] The types of MyQ devices to track. See here for a list of known device types.
columns 1 How many columns of buttons should be used when there are multiple devices. 1 column with 2 devices will stack them vertically while 2 columns would align them horizontally.
updateInterval 5 * 60 * 1000 (5 minutes) How often to update the state of your devices, in milliseconds.