danmih1980/homebridge-intertechno-switch

Configuration not quite clear

Opened this issue · 4 comments

brdcg commented

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

Okay, i'm out.

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.

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

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"
}
],