--- layout: page title: "OpenGarage Cover" description: "Instructions on how to integrate OpenGarage.io covers within Home Assistant." date: 2017-04-07 14:25 sidebar: true comments: false sharing: true footer: true logo: opengarage.png ha_category: DIY ha_release: 0.44 --- The `opengarage` cover platform lets you control the open-source [OpenGarage.io](https://opengarage.io/) device through Home Assistant. ## {% linkable_title Configuration %} To enable OpenGarage Covers in your installation, add the following to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry cover: platform: opengarage covers: garage: host: 192.168.1.12 device_key: opendoor name: Left Garage Door garage2: host: 192.168.1.13 device_key: opendoor name: Right Garage Door ``` {% configuration %} covers: description: List of your doors. required: true type: map keys: identifier: description: Name of the cover as slug. Multiple entries are possible. required: true type: map keys: host: description: IP address of device. required: true type: string port: description: HTTP Port. required: false default: 80 type: integer device_key: description: Access key to control device. required: true default: opendoor type: string name: description: Name to use in the Frontend. If not provided, it will use name configured in device. required: false type: string {% endconfiguration %} **Example with more detail:**