Switchbot Universal Remote

Hi!

Did someone managed to do something in Home Assistant using the remote?

I have the 4 buttons appearing unaivalable as one matter device but pushing on the buttons on the remote does nothing…

On Android, cannot access matter devices from the remote either.

Can somebody tell me what is inside that remote? Are there some interesting pins? Is it driven by a ESP?

I guess hacking that pretty manufactored device could be really interesting.

1 Like

Seems like the remote has Bluetooth and IR emitter in it. And you can add IR devices to it (Predefined without a hub, and custom with the hub).

I am planning to get a Zigbee (or wifi) IR receiver device, and try to use it with HA. So I would for example add a generic “Light” to the remote, use the remote to teach the “IR receiver”, and use HA with automations.

I will let you know if it works.

2 Likes

@eliz Oh! Can you please share the reference of the zigbee receiver when you have tried? It looks interesting!

I was planning on using the remote to interact with Home Assistant but only 4 events and it does not work reliably for me.
Plan B was GitHub - t0bst4r/matterbridge-home-assistant to expose selected devices as matter devices and control them but the remote does not see matter devices…

You guys don’t use the Hub with the HA integration?

I didnt try it yet, but seems like this should do the job:
https://www.aliexpress.com/item/1005005772315510.html

It comes with Tasmota but apperantly it can be converted to ESP Home.

I got the idea from this post:

That doesn’t support “receive-anytime” afaics

You can “send” ir commands with it, but it doesnt seem to “listen” them

I think the most important is to send commands?

I now use the harmony , I send activities and commands from HA to my hub
Personally, I don’t care about receiving events…
Allthough, I need to know what activity is “active”

I picked up one of these remotes just because it looks interesting - and knowing the HA community, someone will find a way to fully utilize it in ways I could never imagine!

Sadly, the Switchbot Hub I have turns out to not be one that supports Matter - so sounds like I might have to buy a new hub to enable that part of the functionality.

I am sorry, I am not sure about what you mean. Do you mean the Matter Integration or the SwitchBot Bluetooth one?

I think we are hacking around. We have multiple ways to attack the problem:

  • Catch 1 of the 4 buttons pressing events available in Matter (but from my testing, the events are not reliably received…)
  • Make the remote send IR signals to something and that something relies the signals as triggers to Home Assistant (thus is what eliz is trying). The advantage of this approach is that we can use more than 4 triggers
  • Wait for Switchbot to make the device able to control matter devices
  • Solution D

Even with a Matter compatible Switchbot Hub, it does not seem to work reliably…

Mine is out for delivery (Sunday), of course it’s fedex so I’ll get it by wed.

I have a harmony and while it controls my media, I was looking to control other aspects of my home.

I guess four buttons will work, not ideal. Anyone know if it works with the Xbox?

Hum… I don’t jave an XBox but I do not see it in the infrared devices.

Fir Bluetooth support, it is only Fire TV and Apple TV from my memory.

Do you guys think the universal remote + hub are suitable for HDMI switches, TVs, amplifiers and smart home devices? Or would you rather spend a lot more money on the Unfolded Circle 3?
Please note: I don’t have any other SwitchBot devices and don’t plan to buy any for the time being. I am only interested in controlling my devices using a remote.

Currently, the SwitchBot universal remote supports Switchbot products IR products, Fire TV and Apple TV. For other smart home devices, until we find a way with home assistant, there is nothing more we can do than waiting with hope.

1 Like

Has anyone opened up their remote yet to see what is inside?

FCC internal photos won’t be available until August 4th :frowning:
https://fccid.io/2AKXB-W4600000

I really want to know the same.

Is it so difficult to open it?

I haven’t had any issues with the 4 buttons sending commands to the matter integration in Home Assistant.

What problems are you experiencing?

Did you go into the Switchbot app and add the matter buttons as devices?

It’s under third party accessories in the app. Once you add them, you can name them whatever you like.

Once that’s done, and they are added to the matter integration in Home Assistant, you should see “detected an event” when each button is pressed. It always says “initial press” for whatever reason, but on my installation it updates the time and detects the button press instantly.

Image 7-18-24 at 3.12 PM

I received Athom IR Receiver today. Installed ESP Home and started listening all the ir events and sent them to Home Assistant.

Now I can use the automations to trigger with the events, therefor now I can do whatever Home Assistant allows me with the IR devices in the Remote.

I added a Light and was able to control my lights with the remote. It works really fast.

alias: Toggle lamp
description: ""
trigger:
  - platform: event
    event_type: esphome.ir_lg_code_received
    event_data:
      data: "16187647"
condition: []
action:
  - service: light.toggle
    target:
      entity_id:
        - light.haa_438119
mode: single
4 Likes