mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-01 07:46:49 +00:00

* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
43 lines
1.1 KiB
Markdown
43 lines
1.1 KiB
Markdown
---
|
|
title: "MyQ Cover"
|
|
description: "Instructions on how to integrate MyQ-Enabled garage door covers into Home Assistant."
|
|
logo: myq.png
|
|
ha_category:
|
|
- Cover
|
|
ha_release: 0.39
|
|
ha_iot_class: Cloud Polling
|
|
redirect_from:
|
|
- /components/cover.myq/
|
|
---
|
|
|
|
The `myq` cover platform lets you control MyQ-Enabled garage doors through Home Assistant. Device names in Home Assistant are generated based on the names defined in your MyQ Device mobile app.
|
|
|
|
## Configuration
|
|
|
|
To use your MyQ cover in your installation, add the following to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
cover:
|
|
- platform: myq
|
|
username: YOUR_USERNAME
|
|
password: YOUR_PASSWORD
|
|
type: chamberlain
|
|
```
|
|
|
|
{% configuration %}
|
|
username:
|
|
description: Your MyQ account username.
|
|
required: true
|
|
type: string
|
|
password:
|
|
description: Your MyQ account password.
|
|
required: true
|
|
type: string
|
|
type:
|
|
description: "Your device type/brand. Supported types are `chamberlain`, `liftmaster`, `craftsman` and `merlin`."
|
|
required: true
|
|
type: string
|
|
{% endconfiguration %}
|
|
|