Hello Marcselis, first of all, my enormous appreciation for the amazing work you’ve been doing for this niko integration so far. Niko ending the support for remote controlling these switches was huge bummer but it seems you might actually be the person who came to our rescue, not all hero’s wear capes
I’ve been tinkering around with this setup a bit, and I think I’m almost there, however, for some reason my light dont react to the commands send…yet
My config:
{
"LogLevel": "Information",
"SerialPort": "/dev/ttyUSB0",
"EasywaveActionTimeout": "500",
"EasywaveRepeatTimeout": "80",
"MQTTServer": "192.168.1.203",
"MQTTPort": "1883",
"MQTTUser": "My",
"MQTTPassword": "secret",
"Devices": [
{
"Id": "0ae33b",
"Type": "Transmitter",
"Name": "Poolhouse lichtschakelaar",
"Area": "Poolhouse",
"Buttons": ["A", "B"]
},
{
"Id": "phpl",
"Type": "Light",
"Name": "Poolhouse plafondverlichting",
"Area": "Poolhouse",
"Subscriptions": [
{
"Address": "0ae33b",
"KeyCode": "A"
},
{
"Address": "000010",
"KeyCode": "A",
"CanSend": "true"
}
]
}
]
}```
When I press the button to turn off/on the lights I get something like this in the logging:
[19:14:22.678 DBG Easywave2Mqtt.Mqtt.MessagingService] Topic mqtt2easywave/phpl/set received with payload OFF
[19:14:22.679 DBG Easywave2Mqtt.Mqtt.MessagingService] Received OFF on phpl
[19:14:22.681 DBG Easywave2Mqtt.Easywave.EldatRx09Transceiver] Sent TXP,10,B
[19:14:22.683 WRN Easywave2Mqtt.Easywave.EasywaveSwitch] Switch Poolhouse plafondverlichting is turned Off
[19:14:22.684 DBG Easywave2Mqtt.Mqtt.MessagingService] Publishing topic easywave2mqtt/phpl/state with payload OFF
[19:14:22.689 DBG Easywave2Mqtt.Easywave.EldatRx09Transceiver] Received OK
[19:14:22.689 DBG Easywave2Mqtt.Easywave.EldatRx09Transceiver] Eldat Transceiver confirmed last command
[19:14:22.699 DBG Easywave2Mqtt.Mqtt.MessagingService] Topic easywave2mqtt/phpl/state received with payload OFF
[19:14:24.337 DBG Easywave2Mqtt.Mqtt.MessagingService] Topic mqtt2easywave/phpl/set received with payload ON
[19:14:24.338 DBG Easywave2Mqtt.Mqtt.MessagingService] Received ON on phpl
[19:14:24.338 DBG Easywave2Mqtt.Easywave.EldatRx09Transceiver] Sent TXP,10,A
[19:14:24.341 WRN Easywave2Mqtt.Easywave.EasywaveSwitch] Switch Poolhouse plafondverlichting is turned On
[19:14:24.341 DBG Easywave2Mqtt.Mqtt.MessagingService] Publishing topic easywave2mqtt/phpl/state with payload ON
[19:14:24.345 DBG Easywave2Mqtt.Easywave.EldatRx09Transceiver] Received OK
[19:14:24.345 DBG Easywave2Mqtt.Easywave.EldatRx09Transceiver] Eldat Transceiver confirmed last command
[19:14:24.348 DBG Easywave2Mqtt.Mqtt.MessagingService] Topic easywave2mqtt/phpl/state received with payload ON```
I’m far from an expert, but to me this all seems to be okay, but still the lights don’t react to commands sent from HomeAssistant at all, any ideas what I am doing wrong?