Read the statement by Michael Teeuw here.
HomeKit or HomeBridge integration to readout room temperatures
-
I now tried to solve this via ioBroker. I was able to adjust ioBroker via Node-RED to read out the temperature from my Hue motion sensor:
I tried to integrate this value via MMM-ioBroker.
But I can’t get MMM-ioBroker to read the value 20,31.
The config.js I use is:{ module: 'MMM-ioBroker', position: 'top_right', config: { host: 'localhost', port: '8081', https: false, devices: [ { name: 'Haustemperatur', deviceStates: [ { id: 'node-red.0.hue.temperatur', icon: 'wi wi-thermometer', suffix: '°' }, ] }, ] } },
The MagicMirror only shows a “-” where the 20,31 should be. The rest of the module loads fine.
Opening http://localhost:8081 in a browser opens the ioBroker on my Pi without any problem.Does anyone have an idea?
-
Hi,
Because of this post I tried to get Homematic IP readings that I successfully integrated in ioBroker.
I have a separate host for ioBroker and use port 8082.
I also cannot get MMM-ioBroker to read the temperature and humidity readings.My
pm2 logs
shows:0|mm | Connecting socket for: MMM-ioBroker : : 0|mm | Request Failed. 0|mm | Status Code: 404 0|mm | Request Failed. 0|mm | Status Code: 404 : :
What do you see in the log ?
-
@evroom 404 means not found.
How did the url for the request get created? What does the url look like just before the request is sent?
-
@sdetweil
I was hoping the module would take care of this.
I do not know how a ioBroker URI should look like.
I configured MMM-ioBroker using the IP and port of my ioBroker host and the ID’s that I used in ioBroker vis to display temperature and humidity of my Homematic IP devices.What would be the syntax of a GET call ?
-
Okay, got it working.
In ioBroker I needed to activate the "Build-in Simple-API in web.0.
Then this works:
http://[ioBroker_IP]:8082/help
And this works:
http://[ioBroker_IP]:8082/getPlainValue/hm-rpc.0.xxxxxxxxx.1.ACTUAL_TEMPERATURE
-
@evroom cool!.. glad u got it working
can u mark this solved? 3 dots to the right of topic…
-
@sdetweil said in HomeKit or HomeBridge integration to readout room temperatures:
can u mark this solved? 3 dots to the right of topic…
It is the topic of @Kuhlemann , so he needs to try if the solution that worked for me will work for him.
-
@evroom Thank you, this worked for me! I would have never found this out alone!
Maybe someone should add this information to MMM-ioBroker!