--- layout: page title: "Garadget Cover" description: "Instructions on how to integrate Garadget covers within Home Assistant." date: 2016-10-24 14:25 sidebar: true comments: false sharing: true footer: true logo: garadget.png ha_category: Cover ha_release: 0.32 ha_iot_class: Cloud Polling redirect_from: - /components/cover.garadget/ --- The `garadget` cover platform lets you control [Garadget](http://www.garadget.com/) garage door futurizers through Home Assistant. ## {% linkable_title Configuration %} To enable Garadget Covers in your installation, add the following to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry cover: - platform: garadget covers: first_garage: device: 190028001947343412342341 username: YOUR_USERNAME password: YOUR_PASSWORD name: first_garage second_garage: device: 4c003f001151353432134214 access_token: df4cc785ff818f2b01396c44142342fccdef name: second_garage ``` {% configuration %} covers: description: List of your doors. required: true type: list covers: keys: device: description: This is the device id from your Garadget portal. required: true type: string username: description: Your Garadget account username. required: true type: string password: description: Your Garadget account password. required: true type: string access_token: description: A generated `access_token` from your Garadget account. required: true type: string name: description: me to use in the frontend, will use name configured in Garadget otherwise. required: false default: Garadget type: string {% endconfiguration %} If provided, the **access_token** will be used, otherwise the **username** and **password** will be used to automatically generate an access token at start time. ## {% linkable_title Example %}