crxporter

Results 94 comments of crxporter

Heads up all, this is being built now. We are looking for feedback on the best way to handle it. Please join the discussion on discord if you have thoughts!...

Are you running with experimental mode as described by Shaquu in the comment just above yours? I haven't actually tried this feature yet but I'm following along a bit.

I’m currently building my HomeKit setup around zwave2mqtt. I’m using node red with [this plugin](https://github.com/NRCHKB/node-red-contrib-homekit-bridged) to handle the HomeKit side. I currently have outlets, dimmers, and on/off switches running great....

@robertsLando it's not a change to anything on zwave2mqtt. It's simply using the zwave messages to connect to homekit through node red. Here's what it looks like: ![Screen Shot 2020-03-09...

@simplenotezy if you’re interested I’d be happy to guide you through the setup as I have built it. I’m running all my Zwave (sensors, switches, curtain, dimmer) through nodered into...

Hello again. I'm back with a yearly reminder that the projects who depend on this library would really appreciate semantic versioning. Is 2023 the year?!

Please? How many more years do I need to come beg for this until we get semver and bump to 1.0?

I just tried punching in the websocket endpoint into built in websocket nodes. It actually gives me pretty much exactly what I wanted: Flow: ``` [{"id":"64830ff4.4c11d","type":"websocket in","z":"7c77bf66.1f173","name":"","server":"","client":"387863aa.83b2f4","x":590,"y":1820,"wires":[["e6804bdf.6fd12"]]},{"id":"e6804bdf.6fd12","type":"debug","z":"7c77bf66.1f173","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":860,"y":1960,"wires":[]},{"id":"387863aa.83b2f4","type":"websocket-client","path":"ws://10.11.111.235:8001/api/v2/channels/com.samsung.art-app?name=RnJhbWUgVGVzdA==","tls":"","wholemsg":"true"}] ``` Screenshot of...

I'll be continuing my research to see which other websocket endpoints I can watch. Anyone who's found some, please send me a list if you have a minute!

I've added to the websocket "turn on art mode" and "turn off art mode" - which are working properly. Flow: ``` [{"id":"675cb28c.8a145c","type":"debug","z":"7c77bf66.1f173","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":610,"y":2300,"wires":[]},{"id":"273e7690.a6024a","type":"json","z":"7c77bf66.1f173","name":"","property":"payload.data","action":"obj","pretty":true,"x":450,"y":2300,"wires":[["675cb28c.8a145c"]]},{"id":"6d900134.4d39c","type":"json","z":"7c77bf66.1f173","name":"","property":"payload","action":"obj","pretty":true,"x":290,"y":2300,"wires":[["273e7690.a6024a"]]},{"id":"fe60ab14.713fa8","type":"websocket in","z":"7c77bf66.1f173","name":"","server":"","client":"387863aa.83b2f4","x":460,"y":2220,"wires":[["6d900134.4d39c"]]},{"id":"659031c9.318c2","type":"websocket out","z":"7c77bf66.1f173","name":"artmode?","server":"","client":"387863aa.83b2f4","x":620,"y":2040,"wires":[]},{"id":"a3df6a4c.9aa69","type":"function","z":"7c77bf66.1f173","name":"","func":"\nmsg.payload.params.data = JSON.stringify(msg.payload.params.data);\nreturn msg;\n","outputs":1,"noerr":0,"initialize":"","finalize":"","x":460,"y":2040,"wires":[["659031c9.318c2"]]},{"id":"4c57871f.3b704","type":"inject","z":"7c77bf66.1f173","name":"Art mode on","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"{\"method\":\"ms.channel.emit\",\"params\":{\"data\":{\"value\":\"on\",\"request\":\"set_artmode_status\",\"id\":\"545fc0c1-bd9b-48f5-8444-02f9c519aaec\"},\"to\":\"host\",\"event\":\"art_app_request\"}}","payloadType":"json","x":130,"y":2040,"wires":[["a3df6a4c.9aa69"]]},{"id":"fc795c3d.bb7958","type":"inject","z":"7c77bf66.1f173","name":"Art mode...