To get a Notification when my dehumidifier is full

Hi there,
I am working on an automation that sends a message to my smartphone when my dehumidifier ist full.
It turns on via a smart plug when the humitity is above 55%. The power is about 300 to 700 Watt.
If the tank of the dehumidifier gets full the power turns to zero and the smart plug is still turned on. At this point I want to get a notification on my smartphone.
At the moment I get this message everytime the smartplug turns on.
Here is the YAML Code:

alias: Luftentfeuchter voll
description: ""
triggers:
  - type: turned_on
    device_id: cde4696828de7403ae8d88cecb377129
    entity_id: eb9ed57bf265fe89a44b6674d3d243b6
    domain: switch
    trigger: device
    for:
      hours: 0
      minutes: 0
      seconds: 30
conditions:
  - type: is_power
    condition: device
    device_id: cde4696828de7403ae8d88cecb377129
    entity_id: 9e07f569d8dc2a97a64c61e1087678ef
    domain: sensor
    below: 5
actions:
  - delay:
      hours: 0
      minutes: 1
      seconds: 0
      milliseconds: 0
  - action: notify.notify
    metadata: {}
    data:
      message: Luftentfeuchter leeren
mode: single

You need to swap the condition and trigger.