Erstellte Forenantworten
7 Beiträge anzeigen - 1 bis 7 (von insgesamt 7)
-
AutorBeiträge
-
DuBMicXTeilnehmer
thank you!!
DuBMicXTeilnehmerCheck you inbox 🙂
DuBMicXTeilnehmerI’m running node v4.0.0 & yes thats correct & yes i have a self modified plugin i can send it to you if you want
DuBMicXTeilnehmerYes! & i did it on a seperated raspberry pi but it was really slow then till homebridge reacted and thank you, tot dan 🙂
DuBMicXTeilnehmerHomebridge is getting the state of the outputs of my logo trougt LogoControl and sending on off signals ill give u mu config.xml and the config where the REST parameters are in it, sometimes this error happens and sometimes it runs without problem for a few days
Config.xml:
<?xml version="1.0" encoding="utf-8"?> <configuration> <settings> <plc id="LOGO1" type="Logo8" ip="192.168.1.25" /> <httpWebservice port="8088" /> <httpsWebservice port="8080" username="admin" passwordHash="c5b7932a4ad4734941370dd837cd2c1873c9a596" hashSalt="1d5sd131" /><!-- generate your SHA1 password hash here: http://www.sha1generator.de --> <valueTextConverter></valueTextConverter> </settings> <infrastructure> <group name="Switches"> <!-- Switches --> <device id="1" name="Music" type="light"> <!-- Stopcontact Muziek --> <attribute id="1" name="Status" plc="LOGO1" address="2.0"></attribute> <method id="1" name="off" plc="LOGO1" address="0.0" /> <method id="2" name="on" plc="LOGO1" address="1.0" /> </device> <device id="2" name="Lights" type="light"> <!-- Lichten --> <attribute id="1" name="Status" plc="LOGO1" address="2.1"></attribute> <method id="1" name="off" plc="LOGO1" address="0.1" /> <method id="2" name="on" plc="LOGO1" address="1.1" /> </device> <device id="3" name="Gang" type="light"> <!-- Lichten Gang --> <attribute id="1" name="Status" plc="LOGO1" address="2.2"></attribute> <method id="1" name="off" plc="LOGO1" address="0.2" /> <method id="2" name="on" plc="LOGO1" address="1.2" /> </device> <device id="4" name="Lock Timer" type="light"> <!-- Lock Timer --> <attribute id="1" name="Status" plc="LOGO1" address="2.3"></attribute> <method id="1" name="off" plc="LOGO1" address="0.3" /> <method id="2" name="on" plc="LOGO1" address="1.3" /> </device> <device id="5" name="Deur" type="light"> <!-- Deur --> <attribute id="1" name="Status" plc="LOGO1" address="2.4"></attribute> <method id="1" name="off" plc="LOGO1" address="0.4" /> <method id="2" name="on" plc="LOGO1" address="1.4" /> </device> <device id="6" name="Leds" type="light"> <!-- Leds --> <attribute id="1" name="Status" plc="LOGO1" address="2.5"></attribute> <method id="1" name="off" plc="LOGO1" address="0.5" /> <method id="2" name="on" plc="LOGO1" address="1.5" /> </device> <device id="7" name="SensorCheck" type="light"> <!-- SensorCheck --> <attribute id="1" name="Status" plc="LOGO1" address="2.6"></attribute> <method id="1" name="off" plc="LOGO1" address="0.6" /> <method id="2" name="on" plc="LOGO1" address="1.6" /> </device> <device id="8" name="Indicate Lights" type="light"> <!-- Indicatie lichten --> <attribute id="1" name="Status" plc="LOGO1" address="2.7"></attribute> <method id="1" name="off" plc="LOGO1" address="0.7" /> <method id="2" name="on" plc="LOGO1" address="1.7" /> </device> <!-- END Switches --> </group> </infrastructure> </configuration>
homebrdige config.json
{ "bridge": { "name": "Studio", "username": "CC:22:3D:E3:CE:35", "port": 51826, "pin": "028-05-688" }, "description": "Domotica", "accessories": [ { "accessory": "MagicHome", "name": "LEDs", "ip": "192.168.1.57", "setup": "RGBWW", "purewhite": false, "switchHandling": "realtime", "http_method": "GET", "on_url": "http://localhost:8088/rest/devices/6/methods/2", "off_url": "http://localhost:8088/rest/devices/6/methods/1", "status_url": "http://localhost:8088/rest/devices/6/attributes/1/value" }, { "accessory": "Http", "name": "Audio", "switchHandling": "realtime", "http_method": "GET", "on_url": "http://localhost:8088/rest/devices/1/methods/2", "off_url": "http://localhost:8088/rest/devices/1/methods/1", "status_url": "http://localhost:8088/rest/devices/1/attributes/1/value", "service": "Outlet" }, { "accessory": "Http", "name": "Licht", "switchHandling": "realtime", "http_method": "GET", "on_url": "http://localhost:8088/rest/devices/2/methods/2", "off_url": "http://localhost:8088/rest/devices/2/methods/1", "status_url": "http://localhost:8088/rest/devices/2/attributes/1/value", "service": "Light" }, { "accessory": "Http", "name": "Gang", "switchHandling": "realtime", "http_method": "GET", "on_url": "http://localhost:8088/rest/devices/3/methods/2", "off_url": "http://localhost:8088/rest/devices/3/methods/1", "status_url": "http://localhost:8088/rest/devices/3/attributes/1/value", "service": "Light" }, { "accessory": "Http", "name": "Deur", "switchHandling": "realtime", "http_method": "GET", "on_url": "http://localhost:8088/rest/devices/5/methods/2", "off_url": "http://localhost:8088/rest/devices/5/methods/1", "status_url": "http://localhost:8088/rest/devices/5/attributes/1/value", "service": "LockMechanism" }, { "accessory": "Http", "name": "AlarmNotify", "switchHandling": "realtime", "http_method": "GET", "on_url": "http://localhost:8088/rest/devices/7/methods/2", "off_url": "http://localhost:8088/rest/devices/7/methods/1", "status_url": "http://localhost:8088/rest/devices/7/attributes/1/value", "service": "Switch" },{ "accessory": "Http", "name": "IndicateLights", "switchHandling": "realtime", "http_method": "GET", "on_url": "http://localhost:8088/rest/devices/8/methods/2", "off_url": "http://localhost:8088/rest/devices/8/methods/1", "status_url": "http://localhost:8088/rest/devices/8/attributes/1/value", "service": "Switch" },{ "accessory": "Http", "name": "DeurTimer", "switchHandling": "realtime", "http_method": "GET", "on_url": "http://localhost:8088/rest/devices/4/methods/2", "off_url": "http://localhost:8088/rest/devices/4/methods/1", "status_url": "http://localhost:8088/rest/devices/4/attributes/1/value", "service": "Switch" }], "platforms": [] }
Thnx for the answear man! 😀
DuBMicXTeilnehmerPlease?
DuBMicXTeilnehmerAnd how can i fix that Roman?
-
AutorBeiträge
7 Beiträge anzeigen - 1 bis 7 (von insgesamt 7)