Hi just installed everything from node red.
Everything works on the browser and the iPhone but the actual state of a light does not change in my house
I have Niko home control 2 in my house and everything works fine with openhab and a bridge.
But it seems with node-red the outputs our not going through To My niko connected controller Which works through Mqtt
Anybody Any ideas
Thx
You probably need to add a function node that will convert the output form the homekit service node to something the niko controller can understand before sending it to the mqtt out node.
It won't magically work and some glue is nearly always needed.
That I didnât try.
Will test as soon as I get some time. Fingers crossed đ¤
Thx
@sjorge perhaps you don't have any idee how I can put all of this into node-red?
I think I'm having issues with mqtt, with mqtt.fx I can connect to my niko but through node-red it stays disconnected :( so I can not send anything through
I have no experience with the niki controller, all my functions are for use with zigbee2mqtt.
no problem ;) you helped a bit so that is already ok
great work with the things you already accomplished :)
Letâs start with 2 questions:
1 what do you have so far working with your Niko controller?
2 can you share your current node red (at least a screenshot, preferably the code copied from node red)?
with mqtt.fx I can connect to my niko but through node-red it stays disconnected
This seems to me like your mqtt setup in node red might not be quite right. The mqtt nodes in node red should say âconnectedâ
Niko and openHAB works like a charm ( but you can do more with node-red)
Iâve created a simple lightbulb without the function node this time
Screenshots of working interaction with niko


And this is the flow from node-red
[{"id":"bd92eb2.01c0318","type":"mqtt out","z":"b130cbdb.8b2188","name":"mqtt niko","topic":"hobby/control/devices/evt","qos":"","retain":"","broker":"5d8ecb6c.38f3bc","x":870,"y":500,"wires":[]},{"id":"5d8ecb6c.38f3bc","type":"mqtt-broker","z":"","name":"Niko Connected Controller","broker":"192.168.0.3","port":"8883","tls":"a5471e66.b8b0c","clientid":"fae70002774a4df1a4280c0c7b372d88","usetls":true,"compatmode":false,"keepalive":"60","cleansession":true,"birthTopic":"","birthQos":"0","birthRetain":"false","birthPayload":"","closeTopic":"","closeQos":"0","closeRetain":"false","closePayload":"","willTopic":"","willQos":"0","willRetain":"false","willPayload":""},{"id":"a5471e66.b8b0c","type":"tls-config","z":"","name":"","cert":"","key":"","ca":"","certname":"","keyname":"","caname":"ca-chain.cert.pem","servername":"","verifyservercert":true}]
It looks like your mqtt.fx is using port 8884 while your node red looks like 8883. Might want to check the mqtt broker config in node red to be sure your port, login, password, etc are correct...
Itâs odd to see 8884, default insecure is 1883 and default secure is 8883
Tried already with 8883. Same result
But with openHAB I did have to add a homebridge binding that connect to the touch profiles off my Niko controller. In order to receive the itemslist
https://www.openhab.org/addons/bindings/nikohomecontrol/
Thatâs the bridge Iâm talking about
But itâs Chinees to me âşď¸
Donât understand why to have mqtt and this bridge at same time. From what I read they use different ports
Why do you want to achieve this through MQTT?
Why don't you use the openHAB REST API (ie.: Node-RED openHAB node)?
At least these MQTT problems might disappear. Also 8883 is the default MQTT port for TLS. Do you use TLS also?
@radokristof yes Niko is protected through TLS.
When I setup my own mqtt broker everything works fine,
But Niko uses its own broker with certificate and encryption. So I guess it must go through their own broker
@geani I see. Sorry I don't know anything about Niko.
So you use the Nikohome binding with openHAB? It seems it uses other methods to connect to Niko.
Anyway, if everything works from openHAB and you control your Niko system through openHAB, why don't you connect Node-RED to openHAB and not directly to Niko Home?
Than you don't have to mess around with MQTT certificates and other things, you can control openHAB (and all your items, doesn't matter what kind of device it is) easily from Node-RED.
@radokristof Imo discoverd node-red after openHAB.
So now Iâm getting my items list from Niko through openHAB. Havenât figured out how to get all my items directly in node-red
OpenHAB has a special binding bridge for Niko that I donât find in node-red
why don't you connect Node-RED to openHAB
This would be a great option. Except I think you might be trying to keep your HomeKit (node red) setup up to date over openhab restarts.
That being said, I think you should check the MQTT setup in node red. Since itâs working in MQTT.fx youâll want to copy that exactly. I looked more this morning and noticed youâre setting node red connection with TLS while youâre using a user name / password in MQTT.fx. It does seem that the (first) issue is the MQTT connection.
IP: 192.168.0.3
Port: 8884
TLS: no
Username: hobby
Password: â˘â˘â˘â˘â˘â˘â˘â˘â˘â˘â˘â˘â˘â˘â˘
Start by trying a MQTT input connected to a debug node. Subscribe to #/# (that should show you everything). Then watch the debug to see if your Niko stuff is sending anything. Once thatâs set right we can start building the function nodes to translate Niko -> HomeKit and HomeKit -> Niko
Will try this evening. Thx for the help
Ps how can I subscribe to #/#
Is that in mqtt.fx or in node-red?
The wildcard subscription is in node red. When you place a mqtt input node youâll fill in the topic with â#/#â instead of the full topics that you are using.
Alternately you can use âhobby/control/devices/evtâ.
If this doesnât work and you are planning to stick with openhab, then you may have better luck starting out with the node red openhab nodes - that would allow you to connect all of your openhab items to anything in node red. Of course if youâre jumping ship from OH like I have youâll of course want to get node red figured out.
Yeah seems node red is more advancedand you can do more with it
Still have to learn a bit.
Think I chose the wrong lessons in school đ
@crxporter did exactly as you said but still nothing, mqtt not working at all pff :(
I just found this and it looks like your previous approach was correct using port 8884 and the SSL/TLS certificate. (Page 7)
I found another project here is using port 8884, the hobby user name, unique client ID (leave blank in node red), your token as a password, and perhaps importantly is set âreject unauthorized : falseâ.
The reject unauthorized set to false may be important. I canât really check any of my things right now but poke around the mqtt configuration to see if thereâs a way to allow unauthorized connections.
Itâs odd to me that your mqtt.fx is working but your nodered is not. Once you get that to show âconnectedâ and start receiving messages youâll be much closer to a working setup
yeah I know. I tried everything. its weird
perhaps something with the Client ID?

If the client id is left blank in node red then it will auto-generate a random client id.
Youâre of course free to create your own unique client id.
my own broker works like a charm but niko, damn :)
must be something small to configure.
and niko is not feeling like helping the customers,
it's even mentioned in our documentation of the api
break it, fix it yourself :)
break it, fix it yourself
I saw that also. Theyâre so helpful!
Is there any kind of firewall between your node red and your Niko? Is port 8884 open everywhere on your network?
Iâm waiting for my wife to come out of surgery just reading through various Github projects (linked above and this)... perhaps you could open an issue on one of those to see if they know any tricks to connect. Iâd start with the homebridge one since itâs javascript like nodered.
no firewall that I'm aware off
wil read the GitHub Pages and can always ask.
what was the link for the homebridge one?
thanks for helping
Homebridge Niko:
now I see, I already contacted this person but he has no knowledge of that, I had to ask another person, but that one isn't responding :)
Youâll probably want to point out that youâre having trouble connecting to the mqtt and ask if there were any odd tricks they had to deal with in the Niko implementation of mqtt
ok will try that, hope they have answers
this is the binding that I installed in openhab to make things work.
you see that it connects to port 8883 of the niko controller.
and the touch profile is something I had to create on my home installation for it to recognise the items I have.
that I can not enter anywhere in node-red
it's something mark herwege created for openhab
I've sent him a message now, hopefully he'll re-ply with answers.
guess there has to be created something similar for node-red too

that's what I got from him
it's a lot :)
maybe you understand a bit
Nothing specific I remember. But I started well before the Hobby API became available. Anyway, that should not make a big difference. When testing the connection originally, I was using MQTT Spy to test the connection. When that was connecting, I knew I should be able to do it in Java. The underlying MQTT communication in the binding relies on the MQTT library used. In openHAB, the MQTT library was changed recently, but that did not impact the binding in any major way. So it looked like it was fairly stable to me.
One thing to be aware of is that the communication messages used by Niko are not very easy to map to a MQTT topic/subscribe mechanism. In an ideal world, MQTT messages should be status updates of a topic. But Niko decided to wrap the status of activities in messages that only convey the message type. Thatâs why I feel the standard MQTT binding in openHAB would be very challenged to provide an appropriate solution. You basically need to keep a copy of a representation of the model locally, instead of just reacting on events. It would require an awful amount of rules in openHAB to make the standard MQTT binding work for Niko Home Control. I donât know NodeRed an any extend, but I sincerely hope it is easier on that side.
Cheers,
Mark
Are you running node red on a pi? Could you try installing it on your Mac (which has the functional mqtt.fx connection)? If youâve indeed tried all the options in the mqtt settings then the next step is to check if there are network problems blocking the connection, easy way is to run NR on a machine known to be able to make the connection.
The explanation from the openhab developer is mostly saying that parsing the JSON to/from Niko was a big project. Thatâs the project youâll have to look forward to once you get the mqtt connection to run.
yes on a pi, will install on Mac and let you know how it goes.
one question, with mqtt.fx. if I publish an event to the topic on my niko, should the light then switch on or is this connection just to test the communication?
if I publish an event to the topic on my niko, should the light then switch on
I would assume the light should turn on if youâre publishing the right message to the correct topic. Once the connection is good then you should have a two-way connection with the Niko where it publishes events when things change (switch a light switch? I donât know what hardware you have) and it should receive your commands to control the Niko devices.
This is rough to test without having the hardware, in mostly describing what I would expect to see if it works similar to other devices.
then I think I have to look into mqtt on Mac to then, because I can't publish anything, everything comes on the screen but no lights turn on.
just installed node-red on Mac and its the samen with mqtt. no respond.
I use the pi to for openhab so it can be that the pi is not connecting properly, so normally I would have to install everything on my Mac to test, damn

Tried everything from my Mac last night and itâs the same as on the pi.
What I did see.
In mqtt.fx my connection is online but when I click the button subscribe. Shown in screenshot I see nothing
But with my own broker I can. So I can view messages received etc,..
Maybe thereâs still something with the broker that comes with Niko.
@geani would you mind to summarize current status in few words?
Is it a problem with NRCHKB, node-red or any other plugins of node-red or any other 3rd party libraries or applications?
Is there any why we can assist you more?
Side note I havenât responded since I donât have any fresh ideas. Seems like an issue connecting between node red and Niko.
@Shaquu as you can see in previous posts there an attachment. In openHAB thereâs a plugin or binding Niko home control II bridge.
I think thatâs the one thatâs making all the connections possible. Since that plugin doesnât exist in node-red the journey ends here. I donât have the knowledge to create something myself ;) but thanks for the help
@crxporter i understand. Do I may not work. I still learned things.
Iâm trying to get things working now with openhab node.
Found youâre examples for the light and blinds ,etc but still have to learn. Donât know if I can ask you questions somewhere else? Instead of writing this issues page full âşď¸
@geani if we are through with Niko for now we can close this issue. If you come back to it later just comment and we can reopen.
For other questions - either open up a new issue for each or start a general issue like âgeneral help connecting to openhabâ or something.
Benefits of discussing here:
I spend a decent amount of my free time here and am notified of all issues on the project so Iâll watch for your future questions!
Most helpful comment
@geani if we are through with Niko for now we can close this issue. If you come back to it later just comment and we can reopen.
For other questions - either open up a new issue for each or start a general issue like âgeneral help connecting to openhabâ or something.
Benefits of discussing here:
I spend a decent amount of my free time here and am notified of all issues on the project so Iâll watch for your future questions!