Closed simons-plugins closed 1 year ago
Hi,
Unfortunately I have to "simulate" a "Eve weather station" and I did not figure how to have 2 weather stations at the same time in the same homebridge. BUT, the good news, is that homebridge allows you to run an accessorie in its own homebridge instance, so you can add as many whisperer as you want. The only drawbacks is that you need to add manually all the homebridge instance to your home app. Here is the config settings to do it:
{
"accessory": "netro-whisperer",
"name": "Jardin",
"sensorSerial": "1234567890",
"pullInterval": 15
},
{
"accessory": "netro-whisperer",
"_bridge": {
"username": "11:22:33:44:55:66",
"port": 12345
},
"name": "Balcon",
"sensorSerial": "2345678901",
"pullInterval": 15
},
In that example, I have "Jardin" in my default homebridge and "Balcon" in a second homebridge instance. For the username and port, you can use anything you want as soon as it is not already used. See more info on child bridge on the official wiki: https://github.com/homebridge/homebridge/wiki/Child-Bridges
Thank you. Even better I have just managed to replace the battery on 2 dead Whisperers so I have 2 more to add.
Manual config is fine to do.
Cool!
If you are using the "config-ui" plugin (https://github.com/oznu/homebridge-config-ui-x) There is some UI to help you editing the config file, but manually is not that complex...
Hi,
Very excited to find this plugin, but I get the following error when trying to use it for 2 Whisperers, I will eventually like to add 4 or 5.
This is my config. I have followed advice to clear my cached accessories, but that doesn't help. My Homebridge gets in a loop if I include both below devices, reports the following error and then restarts.
{ "name": "Veg Beds", "sensorSerial": "98f4abcb9e43", "pullInterval": 60, "debug": false, "accessory": "netro-whisperer" }, { "name": "Main Border", "sensorSerial": "98cdac4896c4", "debug": true, "accessory": "netro-whisperer" }
Any ideas?
Thanks. Simon