A-OK Matter Roller Shade Motor

I picked up one of these Matter blind motors today from amazon. My goal is to be able to control this in Hubitat as well as through homekit and the handheld remote.

https://www.amazon.com/dp/B0F42GMH45?ref=ppx_yo2ov_dt_b_fed_asin_title

It's paired perfectly with Apple Home and works great so far. It's responsice, the Home app even gets all the position updates when I use the handheld RF remote.

I was then able to as Hubitat as a matter device. After turning on pairing mode in Apple Home. And putting in the pairing code to Hubitat,it found it right away and added a device. So far everything has been working quickly and flawlessly.

It imported without a device type so changed it to be Generic Component Window Shade. However, none of the commands seem to work. I also tried dimmer and generic zigbee window to no success.

This seem like a really nice unit, I would love to be able to control it with hubitat. Any Ideas on things to try.

Thanks! Louis

Try the HE inbuilt ‘SmartWings Matter Shade’ driver :

image

1 Like

Thank you Krassimir! That did the trick. Open and close working now,

The set absolute position doesn't seem to work and I don't seem to get battery status, which were the two things I hoping for. Could they work with a different driver?

1 Like
2 Likes

amazing, that got the absolute position working. now just looking for the battery. is that something that needs to be queried or is it pushed out regularly.

thanks for oustanding work on the advanced bridge. It contains all secrets on how to work with the matter devices.

a subscribe to the power attr

attributePaths.add(matter.attributePath(device.endpointId, 0x002F, 0x000C))
String subscribeCmd = matter.subscribe(5,0xFFFF,attributePaths)

and try to read from it, but i get nothing.

attributePaths.add(matter.attributePath(device.endpointId, 0x002F, 0x000C))
String cmd = matter.readAttributes(attributePaths)
sendToDevice(cmd)

in homekit I do see the power level.

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.