Paulmann Plug & Shine

So to close this topic, anyone else that is thinking about compatibility with this 93999 Controller, don‘t bother. The reach of C-8 pro gets to the individual Zigbee Plug&Shine lights/Spots and therefore this controller is obsolete. I now have more control over the lights than with this Paulman-Controller since that device is switching a group and not the individual Spots.

Also one hint, if you are using Home Assistant in parallel create a Script with the reset sequence for those Paulman devices, plug them into a smart plug and run it.
Manually resetting them 5 times in a row and getting the timing right will drive you mad.

alias: Paulmann Reset
sequence:
  - repeat:
      count: 5
      sequence:
        - service: switch.turn_off
          data: {}
          target:
            entity_id: 
              - switch.plug
        - delay: "00:00:03.300"
        - service: switch.turn_on
          data: {}
          target:
            entity_id:
              - switch.plug
        - delay: "00:00:01.300"
icon: mdi:restart
mode: single
1 Like