Innr RC250 remote control - Missing triggers in automation

I have bought an Innr RC250 (Remote Control - Dim je slimme verlichting draadloos - Innr Lighting) and added it into HA via my ConBee II.

I am trying to create some automations with it, but the only triggers available for this device are:

As this is a fairly new device, I can not find any related info about it. Does this mean HA does not support this remote (yet)? Is there any way to fix this? Thanks for pointing me in the right direction.

I have a similar issue.
I tried adding it via Zigbee2MQTT, but it says that it is not supported, unfortunately.

Hey there,

I am facing the same issue. Do you know any solution for this? I am using ZHA with a Sonoff Zigbee 3.0 USB Dongle Plus.

I have this one also and can’t connect it with Conbee 2 stick (Phoscon / deConz). Hope someone can help?

I have not found any source on the internet about this switch. Except how to connect it with Hue, you can connect it to the Zigbee network and then to separate lights. This is working with my test. But i’m not able to integrate it with Home Assistant (not with Conbee 2 and not with Hue bridge).

Is there any news on this ?
I just got one hoping it will work directly but it seems not …

Just received one, the attached image shows the exposed events (AFAIK)

Although I was able to pair it directly with a Zigbee Lightlink Group and it works great.

The problem still exists I suppose. I got the same problem with the inner RC 210.

I got it working by using the log in development tools.

It appears that the event is send as a zha_event in my case.
Using that data in a manual trigger configuration:

description: “…”
trigger:

  • platform: event
    event_type: zha_event
    event_data:
    device_ieee: ‘00:3c:84:ff:fe:1d:2d:eb’
    command: “on”
    condition:
    action:
  • service: scene.turn_on
    target:
    entity_id: scene.verlichting_woonkamer
    mode: single
1 Like

Indeed Peter, it’s still a problem. I just tried to add both the RC 210 and RC 250 from innr. They both connect but the configuration step does not make all the capabilities of the devices available. I’m not familiar yes with the development tools but I’m a developer.

  • Any pointer on what’s the right process to make an unsupported devices properly supported?
  • Where are the logs where one can inspect events (assuming button press generate events)?
  • One it has been discovered properly where should one share back the results so that others can use them too?
  • How come the configuration fails in the first place? I thought the point of Zigbee was precisely to have a protocol insuring compatibility.

Thanks already for sharing your findings.

Here is what I get from (failed) reconfiguration of the 250 :

For the RC 210 I get which I supposed I could use in YAML but probably not via the UI :

innr RC 210 Off event was fired
11:13:53 AM - Now
innr RC 210 On event was fired
11:02:52 AM - 11 minutes ago

How can I know from Logbook what YAML code to write though? Is it an event named “Off”?

Edit: using /developer-tools/event and listening to * (which I assume is all events) I managed to get something on button press

I just got an RC250 and am finding the same problem. I can trigger on ZHA events though, so not all is lost, it’s just a bit harder in the GUI. If I finish an automation I can maybe adapt a blueprint to make it easier for people.
There’s an issue on Github, but it doesn’t look like anyone is working on it actively.

1 Like

Yes, please share back if you get something. Somehow I manage to only get an event once then nothing more. So I toggle another light on once, nothing since.

I had some test automation that worked to switch a light on and off, but I’m not actively using it in my home yet, so it’s not complete yet, only the on-off button is mapped. I’ll post here when I have something more useful.

Here’s my automation with all the buttons. It’s not a blueprint, you’ll have to edit it to insert the right id’s for remote and light. The commands are a bit stupid so you need a helper to de-cycle the left and right buttons. Your problem with not seeing events at all anymore probably means you lost contact with the device and need to re-pair it??

I might go ahead and make this into a full blueprint but I first want to figure out the templating because I had to make the code very ugly to make it work, since I couldn’t figure out how to use the trigger variable to decide what the command was…

1 Like

FYI: I updated the automation with MUCH cleaner code, and it can switch scenes now as well. Working on a blueprint but still bugfixing that

1 Like

FWIW I took my own advice into account (sigh) so after pairing/unpairing and reconfiguring, absolutely 0 thinking, I do indeed manage to get all events properly. It’s a bit of a mess but I can get the on/off main button, increase/decrease brightness and the side buttons too (even though they somehow keep track of a value, not very convenient).

It’s been a bit tricky but seems to work reliably now!