title | description |
---|---|
Airam AIRAM-CTR.U control via MQTT |
Integrate your Airam AIRAM-CTR.U via Zigbee2MQTT with whatever smart home infrastructure you are using without the vendors bridge or gateway. |
To contribute to this page, edit the following file
| Model | AIRAM-CTR.U | | Vendor | Airam | | Description | CTR.U remote | | Supports | on/off, brightness up/down and click/hold/release | | Picture | |
By default this device exposes a deprecated click
event. It's recommended to use the action
event instead.
To disable the click
event, set legacy: false
for this device in configuration.yaml
. Example:
devices:
'0x12345678':
friendly_name: my_device
legacy: false
Hold small reset button pressed (located under battery cover on the backside of remote) for 4 seconds and device will reset and will attempt to join network. Keep clicking any button on the frontside of the device to keep device awake while pairing. You should be clicking every two seconds until pairing is complete.
Device seems to join network also when it is paired directly to Airam bulb (which is joined to network already) (https://www.zigbee2mqtt.io/devices/4713407.html) by keeping ON and DIM buttons pressed while holding remote within 5 centimeters away from Airam bulb.
How to use device type specific configuration
-
legacy
: Set totrue
to disable the legacy integration (highly recommended!) -
transition
: Controls the transition time (in seconds) of on/off, brightness, color temperature (if applicable) and color (if applicable) changes. Defaults to0
(no transition). Note that this value is overridden if atransition
value is present in the MQTT command payload.
Although Home Assistant integration through MQTT discovery is preferred, manual integration is possible with the following configuration:
{% raw %}
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
value_template: "{{ value_json.action }}"
icon: "mdi:gesture-double-tap"
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
unit_of_measurement: "lqi"
value_template: "{{ value_json.linkquality }}"
icon: "mdi:signal"
{% endraw %}