--- title: "Lutron" description: "Instructions on how to use Lutron devices with Home Assistant." logo: lutron.png ha_category: - Hub - Cover - Light - Scene - Switch ha_release: 0.37 ha_iot_class: Local Polling redirect_from: - /components/cover.lutron/ - /components/light.lutron/ - /components/scene.lutron/ - /components/switch.lutron/ --- [Lutron](http://www.lutron.com/) is an American lighting control company. They have several lines of home automation devices that manage light switches/dimmers, occupancy sensors, HVAC controls, etc. The `lutron` integration in Home Assistant is responsible for communicating with the main hub for these systems. Presently, there's only support for communicating with the [RadioRA 2](http://www.lutron.com/en-US/Products/Pages/WholeHomeSystems/RadioRA2/Overview.aspx) Main Repeater and only handle light switches, dimmers, and seeTouch keypad scenes. ## Configuration When configured, the `lutron` integration will automatically discover the rooms and their associated switches/dimmers as configured by the RadioRA 2 software from Lutron. Each room will be treated as a separate group. To use Lutron RadioRA 2 devices in your installation, add the following to your `configuration.yaml` file using the IP address of your RadioRA 2 main repeater: ``` yaml # Example configuration.yaml entry lutron: host: IP_ADDRESS username: lutron password: integration ``` {% configuration %} host: description: The IP address of the Main Repeater. required: true type: string username: description: The login name of the user. The user `lutron` always exists, but other users can be added via RadioRA 2 software. required: true type: string password: description: The password for the user specified above. `integration` is the password for the always-present `lutron` user. required: true type: string {% endconfiguration %}