Is there a SIMPLE way to have a small python or go program act as a "switch" that shows up in Google home? The last time I tried looking at the matter stuff even checking out the git repo required gigabytes of storage and it seemed the opposite of simple.
> Is there a SIMPLE way to have a small python or go program act as a "switch" that shows up in Google home? You can create virtual devices using Homebridge plug-ins. Here's an example: https://www.npmjs.com/package/homebridge-dummy
Matter 1.2 – New device types and improvements
51–60 of 70 posts
Re: Matter 1.2 – New device types and improvements
#52Earlier quoted context omitted.
> Is there a SIMPLE way to have a small python or go program act as a "switch" that shows up in Google home? You can create virtual devices using Homebridge plug-ins. Here's an example: https://www.npmjs.com/package/homebridge-dummy
Yes, that would be useful if I used homekit...
Re: Matter 1.2 – New device types and improvements
#53(There is “binary switch”, which is what my Matter power sockets expose - but the measurements that I actually care about (total kWh, volts, amps, frequency, etc) are only exposed via the company’s proprietary app which runs in parallel “because there is no way of exposing these via Matter” :( )
Re: Matter 1.2 – New device types and improvements
#54Earlier quoted context omitted.
Yes, that would be useful if I used homekit...
You don’t need to use HomeKit for this to work, but you will need https://github.com/oznu/homebridge-gsh . (Caveat: I haven’t tried this myself since I use HomeKit and Alexa devices.)
Re: Matter 1.2 – New device types and improvements
#55Earlier quoted context omitted.
Yes, that would be useful if I used homekit...
You don’t need to use HomeKit for this to work, but you will need https://github.com/oznu/homebridge-gsh . (Caveat: I haven’t tried this myself since I use HomeKit and Alexa devices.)
// establish new websocket connection
const socket = new WebSocket(`wss://homebridge-gsh.iot.oz.nu/socket?${querystring.stringify(qs)}`);
big YIKES from me there, especially because this is not really documented or even mentioned at all.Re: Matter 1.2 – New device types and improvements
#56Earlier quoted context omitted.
You don’t need to use HomeKit for this to work, but you will need https://github.com/oznu/homebridge-gsh . (Caveat: I haven’t tried this myself since I use HomeKit and Alexa devices.)
Oh.. less interesting how that I see how it works. I thought this would be a local thing, but it apparently connects to some third party service: // establish new websocket connection const socket = new WebSocket(`wss://homebridge-gsh.iot.oz.nu/socket?${querystring.stringify(qs)}`); big YIKES from me there, especially because this is not really documented or even mentioned at all.
Re: Matter 1.2 – New device types and improvements
#57Earlier quoted context omitted.
First Matter vacuum gets my business! I just bought a Matter thermostat on a whim (incentives took the price down to $10) and I'm really impressed. It integrated into Home Assistant in seconds after I scanned a QR code and now the local control is instant and flawless. My last thermostat could only integrate using a really complicated cloud auth process and commands only made it all the way to wherever and back to my…
Who makes the thermostat?
Re: Matter 1.2 – New device types and improvements
#58Earlier quoted context omitted.
First Matter vacuum gets my business! I just bought a Matter thermostat on a whim (incentives took the price down to $10) and I'm really impressed. It integrated into Home Assistant in seconds after I scanned a QR code and now the local control is instant and flawless. My last thermostat could only integrate using a really complicated cloud auth process and commands only made it all the way to wherever and back to my…
Which therm did you get? Does it also measure humidity?
Re: Matter 1.2 – New device types and improvements
#59It is still very hard to find matter devices. We wanted recessed downlights and ended up with Zigbee. My air conditioner just died, would be great if a matter compatible one became available.
What did you pick? I’m looking at the moment..
Re: Matter 1.2 – New device types and improvements
#60It is still very hard to find matter devices. We wanted recessed downlights and ended up with Zigbee. My air conditioner just died, would be great if a matter compatible one became available.
What would you want the API to look like here?
I would be very conservative about opening up an API if I was a manufacturer. The reason being that there may be misuses by amateur coders that may increase wear on the product, and leading to increase in warranty claims.
I, as a manufacturer, would much rather prefer customers buy something like a Nest/Ecobee, etc. and manage that. Nest (and likely Ecobee) likely have smarts to not turn the AC on/off 30 times within 10 minutes, etc. Also, you benefit from other algorithms like "Time-to-Temp" (Nest), malfunctioning equipment alerts (Nest), etc. If you're in the US, many electricity utilities will give you a discount if you buy a smart thermostat, and then you can further gain $$ by enrolling in demand-response programs.