Skip to the content.

Caseta Plug-in

Back to Projects Index

Back to Caseta Index

How to Use Home Assistant Auto Discovery

Lutron Caseta Plugin for HomeVisionXL

Overview

The Caseta Client plug-in provides a way to interface Lutron Caseta switches to HomeVision.

Getting Started

This plug-in only works with the Lutron Smart Bridge Pro, NOT the non-Pro version!

Caseta switches are automatically configured in the plug-in using a file obtained from the Lutron application.
  1. Before you can set up the plug-in, you must configure the lights and scenes within the Lutron application. The names you assign to your switches are the names you will use in the plug-in.
  2. If you are using the iOS version of the Lutron application, you will need to access the OS settings and find the Lutron application. After you select the Lutron application, enable Advanced settings. Once you have enabled the Advanced settings go back to the Lutron application.

    If you are using the Android version of the Lutron application, go to settings within the Lutron application and click the check box to show Advanced settings.
  3. Choose Integration and then "enable telnet support" and then "Send integration report".
  4. The integration report will be sent to your email address that you have registered via the application. Copy the configuration and save it to a file on the computer running HomeVisionXL. The default is to have it in your plugin directory with the name CasetaConfigFile.json. The plug-in will read this file and pick up the switch names.

    Note: If you subsequently add or remove any Caseta devices, you must generate a new integration report and create an up-to-date json file. You must restart the Caseta plug-in to read any changes to the json file for them to take effect.
  5. Find the IP of the Lutron Smart Bridge Pro. It might make sense to lock this IP in (make it static) on your router so it doesn't change.
  6. Proceed to Caseta plug-in configuration by enabling the Caseta plug-in and going to the Caseta entry in the HomeVisionXL Plugins menu.

Settings Tab

    cmnd/Dimmer 1/POWER

Devices Tab

This tab displays a list of devices from the Caseta Config file. Caseta switches are listed in the "Zone" dropdown section. The "Devices" dropdown section includes other Caseta devices, most notably the PICO remote. (The Caseta Config File contains a "device" representing the Smart Bridge itself, and has 100 buttons defined for it. This "device" is supressed, at least until there is a definite use for it.)

Editing Zone/Device Settings

Note 1: For PICO remotes, each remote has a further dropdown that shows the available buttons. PICO remotes send out a "pressed" signal when the button is depressed, and a "released" signal when the button is released. In normal use, the "pressed" and "released" signals occur in pairs, so only the "pressed" signal will trigger an action in the plug-in. (I.e., the "released" signal is ignored.) Because of this, only an "ON" macro makes sense. All the rest are disabled.

Note 2: Names for Buttons on PICO remotes are in the form "{n} {b}", where {n} is the PICO remote name and {b} is the button name.

Note 3: If MQTT is enabled, an MQTT "stat/{name}/POWER ON" message is sent when the button is pressed.

Controlling Devices

Devices Area

Right-clicking on a "Zones" or "Devices" device line in the "Devices" tab will bring up a menu from which you can select "Off", "On", or "Set to". When clicked, the appropriate command is sent to the selected switch.

Note 4: For the same reason as in Note 1, the right-click menu for Devices only has "On" enabled. If clicked, this will simulate a button press, which may result in the action of Note 3.

Note 5: The Lutron Smart Bridge Pro returns levels to two decimal places. The plug-in will accept levels with decimals; however, they will be truncated to a whole (integer) number when sent to the switch.

MQTT Control

When MQTT is enabled, switches can be controlled by issuing the appropriate MQTT topic. E.g.,

    cmnd/Dimmer 1/POWER on       Turns Dimmer 1 on to 100%
    cmnd/Dimmer 1/POWER 50       Turns Dimmer 1 on to 50%
    cmnd/Dimmer 1/POWER off      Turns Dimmer 1 off
    cmnd/Dimmer 1/POWER 0        Turns Dimmer 1 off
The payload is case-insensitive.

Switch state can be retrieved with a payload of "?" or empty. E.g.,

    cmnd/Dimmer 1/POWER          Returns Dimmer 1 state
    cmnd/Dimmer 1/POWER ?        Returns Dimmer 1 state

When a switch changes state, it will automatically report its state. E.g.,

    stat/Dimmer 1/POWER ON 50    Dimmer 1 is on at 50%
    stat/Dimmer 1/POWER OFF      Dimmer 1 is off

Serial Control

Caseta switches can be controlled within a schedule via serial commands which take the form:

    caseta: {device name} {command};
"caseta:" is whatever the "Serial string prefix" is defined as. ":' is whatever the "Serial string terminator character(s)" is defined as. device name can contain spaces and is case-sensitive when matching a name in the Caseta Configuration file. command can be "off", "on", "on 0-100" or 0-100 and is case-insensitive. A value of 0 is equivalent to "off"; 100 is equivalent to "on".

For example, to turn on a switch "Dimmer 1", the serial command would be:

    caseta: Dimmer 1 on;

or equivalently,

    caseta: Dimmer 1 100;

NetIO

Caseta switches can be controlled via NetIO using a "netioaction" command in the NetIO application and take the form:

    netioaction caseta [device name] [command]
"caseta" is whatever the "Netio string" is defined as. device name can contain spaces and is case-sensitive when matching a name in the Caseta Configuration file. command can be "off", "on", or 0-100 and is case-insensitive. A value of 0 is equivalent to "off"; 100 is equivalent to "on".

For example, to turn on a switch named "Dimmer 1", the button's sends attribute would be set to:

    sends:  netioaction caseta Dimmer 1 on

The state of the device can be retrieved by:

    reads:  get caseta {status_type} [device name]
The get command will return data depending on status_type. Status_type can be one of the following: "state", "status", "slider", "name", "namestate", "namestatus", or "image". If status_type is not present, it defaults to "status". Status_type is case insensitive.

Status_type determines the output format as follows (Similar to the X10 and Custom Light formats provided by the NetIO plug-in): An empty string is returned if the current state is unknown.

Responding to Switch State Changes

The plug-in will update switch states in the Device Tab when switches change state. If a Flag/Variable or Macro is defined, that object will be set accordingly.

If MQTT is enabled, a "stat" message will be sent with the new state info. If the MQTT plug-in has such a "stat" message defined in its "Ext Devices" section, it will respond to the "stat" message and execute any actions that may be defined in that plug-in.

MQTT Discovery for Home Assistant

The Caseta plug-in supports switch and dimmer discovery for Home Assistant. For details, see the MQTT help at: How to Use the MQTT Plug-in's Home-Assistant Auto Discovery