-
First, I should probably RTFM but I can't find the FM. Any help would be greatly appreciated. Pete |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 6 replies
-
FYI, it's linked from the landing page of this repository. In the documentation, there's a section Using MQTT that describes the MQTT API. |
Beta Was this translation helpful? Give feedback.
-
kpine, I am concerned that I have a lot to learn and don't know where to start. Thanks for your help. Pete |
Beta Was this translation helpful? Give feedback.
-
As it stands now, MQTTE makes sense to me for all my devices that use mqtt. MQTTE displays all my sensor reports and I can use it to command my garage door to open by using the "Publish" button. But it doesn't show any of the activity on the zwave side. Maybe because zwavejs2mqtt isn't set up correctly. I am exploring that. I have also been working with one of my zwave devices, a thermostat, that I have been using for years and I am very familiar with. But I still haven't figured out how to "say",:
And I have concluded that:
But I don't know what to do with that information. How do I turn it into something mosquitto can publish? I know I am missing something very important but I haven't cracked that nut yet. |
Beta Was this translation helpful? Give feedback.
-
robertsLando, |
Beta Was this translation helpful? Give feedback.
-
I had actually tried to follow that video with my system a few days ago. I couldn't get anything on MQTTExplorer. I tried quite a few changes to my configuration/setup but couldn't get it to work. I finally considered that my system was differient enough that it wouldn't work. MQTTExplorer never saw any messages from zwave2mqtt even though zwave2mqtt could do things like change the set point temperature. Also, MQTTExplorer sees all of my other mqtt pubs. Given your recommendation I tried again. I spent a couple of hours reviewing the definations of the various settings and tried more variations but no luck. Error: connect ECONNREFUSED 127.0.0.1:1883 |
Beta Was this translation helpful? Give feedback.
-
Yes, I have mosquitto running. It supports 10 or 15 IOT devices in my system. MQTTExplorer catches all the pubs and displays them correctly. My problem WAS...I say WAS because I found it last night. Just like I said I was missing something important. And, actually what I was missing was the most basic...lets say stupid thing. When I changed the MQTT Host URL, I failed to hit the ENTER key. So when I went off that page it reverted to localhost. I am running zwavejs2mqtt in a docker container so I needed to change that to the URL of my Raspberry Pi even though it is the same computer. Mosquitto is not in the container with zwavejs2mqtt so localhost won't work. I don't know how many times, while trying to get this to work, I went back checking my settings and discovered localhost had replaced 192.168.1.115 (my RPi URL) over and over. That was because I didn't hit ENTER every time I typed in the URL. It can't get more mundane then that. |
Beta Was this translation helpful? Give feedback.
Yes, I have mosquitto running. It supports 10 or 15 IOT devices in my system. MQTTExplorer catches all the pubs and displays them correctly. My problem WAS...I say WAS because I found it last night. Just like I said I was missing something important. And, actually what I was missing was the most basic...lets say stupid thing. When I changed the MQTT Host URL, I failed to hit the ENTER key. So when I went off that page it reverted to localhost. I am running zwavejs2mqtt in a docker container so I needed to change that to the URL of my Raspberry Pi even though it is the same computer. Mosquitto is not in the container with zwavejs2mqtt so localhost won't work. I don't know how many times, w…