Problems with Fritz!DECT 440 and Buttons - solved

Hello,
I had problems to react on the buttons of a DECT 440. So I created an other solution.

First I created a some interfaces to react to the buttons:

Switch ItemXTopLeftPressed "Top Left"
Switch ItemXTopRightPressed "Top Right"
Switch ItemXBottomLeftPressed "Bottom Left"
Switch ItemXBottomRightPressed "Bottom Right"

Afterward i created some scripts to reset the button after I received a change:

rule "RuleXInit"
when
  System reached start level 100
then
  ItemXTopLeftPressed.sendCommand(OFF)
  ItemXBottomLeftPressed.sendCommand(OFF)
  ItemXTopRightPressed.sendCommand(OFF)
  ItemXBottomRightPressed.sendCommand(OFF)
end



rule "RuleXTopLeft"
when
  Item ItemXTopLeftPressed changed from OFF to ON
then
  ItemXTopLeftPressed.sendCommand(OFF)
  //TODO: Reaction of the button
end

Then I created a script to call a website when a botton is clicked. The name of the Website is:
http://X:8080/rest/items/ItemXBottomLeftPressed
These are the settings:
2025_02_14_13_59_09_FRITZ_Box_7590

I hope this will help others to integrate theirs.

1 Like

Thanks so much for the instructions. It works fine again.
My Fritz DECT 440 buttons worked with OpenHAB over the binding for several years until the Fritz Box made an update to version 8.02. But with your workaround i can use it again. Thanks! :raising_hands: