Hi zusammen,
ich habe zwei unterschiedliche Geräte (Comet DECT Heizkörperthermostat via Fritzbox und ein Ventilator (geschaltet über 433MHz Steckdose)) die hin und wieder "Keine Antwort" erzeugen. Workaround: Home-App schließen (via Taskmanager) und neu öffnen.
/var/log/homebridge.log
und
/var/log/homebridge.err
zeigen keine Auffälligkeiten.
Ich nutze zur Ansteuerung der Thermostate homebridge-fritz und für die Steckdosen homebridge-http.
Das hier ist meine .json
Code
{
"bridge": {
"name": "...",
"username": "...",
"port": ...,
"pin": "..."
},
"accessories": [
{
"name": "Luftsensor",
"accessory": "airrohr",
"json_data": "http://192.168.../data.json",
"sensor_id": "<...>",
"update_interval_seconds": 120
},
{
"accessory": "Http",
"name": "...",
"switchHandling": "yes",
"http_method": "GET",
"on_url": "http://192.168.../remote/index.php?group=00000&sys=1&switch=24&action=1&delay=0",
"off_url": "http://192.168.../remote/index.php?group=00000&sys=1&switch=24&action=0&delay=0",
"status_url": "http://192.168.../remote/status.php?sys=1&group=00000&switch=24",
"service": "Switch",
"brightnessHandling": "no",
"brightness_url": "",
"brightnesslvl_url": "",
"sendimmediately": "",
"username" : "",
"password" : ""
},
{
"accessory": "Http",
"name": "Ventilator",
"switchHandling": "yes",
"http_method": "GET",
"on_url": "http://192.168.../remote/index.php?group=00000&sys=1&switch=04&action=1&delay=0",
"off_url": "http://192.168.../remote/index.php?group=00000&sys=1&switch=04&action=0&delay=0",
"status_url": "http://192.168.../remote/status.php?sys=1&group=00000&switch=04",
"service": "Switch",
"brightnessHandling": "no",
"brightness_url": "",
"brightnesslvl_url": "",
"sendimmediately": "",
"username" : "",
"password" : ""
},
{
"accessory": "Http",
"name": "...",
"switchHandling": "yes",
"http_method": "GET",
"on_url": "http://192.168.../remote/index.php?group=00000&sys=1&switch=16&action=1&delay=0",
"off_url": "http://192.168.../remote/index.php?group=00000&sys=1&switch=16&action=0&delay=0",
"status_url": "http://192.168.../remote/status.php?sys=1&group=00000&switch=16",
"service": "Switch",
"brightnessHandling": "no",
"brightness_url": "",
"brightnesslvl_url": "",
"sendimmediately": "",
"username" : "",
"password" : ""
},
{
"accessory": "Http",
"name": "...",
"switchHandling": "yes",
"http_method": "GET",
"on_url": "http://192.168.../remote/index.php?group=00000&sys=1&switch=08&action=1&delay=0",
"off_url": "http://192.168.../remote/index.php?group=00000&sys=1&switch=08&action=0&delay=0",
"status_url": "http://192.168.../remote/status.php?sys=1&group=00000&switch=08",
"service": "Switch",
"brightnessHandling": "no",
"brightness_url": "",
"brightnesslvl_url": "",
"sendimmediately": "",
"username" : "",
"password" : ""
}
],
"platforms": [
{
"platform": "HarmonyHub",
"name": "Harmony Hub"
},
{
"platform": "Fritz!Box",
"name": "My FritzBox",
"username": "...",
"password": "...",
"url": "http://192.168...",
"interval": 30,
"hide": ["wifi"],
"concurrent": false,
"options":
{
"strictSSL": false
}
}
]
}
Alles anzeigen
Wie und wo kann ich weiter zum debuggen ansetzen ![]()
![]()