danmih1980 / homebridge-intertechno-switch

Homebridge plugin for Intertechno radio switches
1 stars 0 forks source link

Configuration not quite clear #2

Open brdcg opened 4 years ago

brdcg commented 4 years ago

Hi, i recently stumbled upon your project. The Configuration Part is not quite clear to me. I configured one Switch in the Intertechno App and looked into the config file. Tried the devid as code in the config section but this didnt work. Any ideas?

Thank you very much. Here is my config.json from the Intertechno App: {"scenarios":[], "rooms": [{"name":"Wohnzimmer", "devices": [ {"name":"grüne Lampe", "icon":"icon6.png", "type":"ON_OFF", "devId":"03", "learnCode":"TOM#2", "paired":true, "codeWheel":false} ] }], "timers":[], "meta":{"appVersion":"0.2.0","macAddr":"XX.XX.XX.XX"}}

brdcg commented 3 years ago

Okay, i'm out.

Pa7rickStar commented 3 years ago

The app mentioned in the config secion is the old Intertechno WLAN Switch app, which isn't avaviable for iOS anymore. In said app you could see the used codes. However, even with the right code this isn't working anymore. Such a shame - this project is dead.

chriscox79 commented 3 years ago

Hi there

I have the same problems. i can see all my switches in the HomeKit app on my iPhone , but there is no answer from the devices. here my config for the homebridge on raspi4:

"accessories": [ { "accessory": "IntertechnoSwitch", "name": "IntertechnoSwitch", "host": "xxx.xxx.x.xxx", }, { "accessory": "IntertechnoSwitch", "name": "Wohnzimmer", "host": "xxx.xxx.x.xxx", "type": "ON_OFF", "devId": "00", "learnCode": "TOM#2", "paired": true, "codeWheel": false }, { "accessory": "IntertechnoSwitch", "name": "Küche", "host": "xxx.xxx.x.xxx", "type": "ON_OFF", "devId": "11", "learnCode": "TOM#2", "paired": true, "codeWheel": false }, { "accessory": "IntertechnoSwitch", "name": "Couch", "host": "xxx.xxx.x.xxx", "type": "ON_OFF", "devId": "15", "learnCode": "TOM#2", "paired": true, "codeWheel": false }, { "accessory": "IntertechnoSwitch", "name": "TV", "host": "xxx.xxx.x.xxx", "type": "ON_OFF", "devId": "01", "learnCode": "TOM#2", "paired": true, "codeWheel": false }, { "accessory": "IntertechnoSwitch", "name": "Esstisch", "host": "xxx.xxx.x.xxx", "type": "ON_OFF", "devId": "08", "learnCode": "TOM#2", "paired": true, "codeWheel": false } ],

any mistakes that i make? can someone help me please?

thx

chriscox79 commented 3 years ago

Finally I did it (replace all switches with the old CodewWheel system) and it works perfekt :

"accessories": [ { "accessory": "IntertechnoSwitch", "type": "ON_OFF", "paired": true, "code": "A1", "codeWheel": true, "host": "xxx.xxx.x.xxx", "name": "Licht Wohnzimmer" }, { "accessory": "IntertechnoSwitch", "type": "ON_OFF", "paired": true, "code": "A2", "codeWheel": true, "host": "xxx.xxx.x.xxx", "name": "Licht Küche" }, { "accessory": "IntertechnoSwitch", "type": "ON_OFF", "paired": true, "code": "A3", "codeWheel": true, "host": "xxx.xxx.x.xxx", "name": "Licht Couch" }, { "accessory": "IntertechnoSwitch", "type": "ON_OFF", "paired": true, "code": "A4", "codeWheel": true, "host": "xxx.xxx.x.xxx", "name": "Licht TV" }, { "accessory": "IntertechnoSwitch", "type": "ON_OFF", "paired": true, "code": "A5", "codeWheel": true, "host": "xxx.xxx.x.xxx", "name": "Licht Tisch" }, { "accessory": "IntertechnoSwitch", "type": "ON_OFF", "paired": true, "code": "A6", "codeWheel": true, "host": "xxx.xxx.x.xxx", "name": "Luna" }, { "accessory": "IntertechnoSwitch", "type": "ON_OFF", "paired": true, "code": "A7", "codeWheel": true, "host": "xxx.xxx.x.xxx", "name": "Licht Balkon" } ],