Miflora plant soil monitor automation

I have a Miflora plant soil monitor and I want to create an automation to receive a text when [sensor.pepper_plant_moisture] reaches zero. I get no response when the numeric trigger passes the threshold from 1 to zero. I’ve tried various combinations of triggers, but I can’t get anything to work. Any ideas?

Configuration.yaml

- platform: miflora
    mac: 'xx:xx:xx:xx:xx:xx'
    name: Pepper plant
    force_update: false
    median: 3
    monitored_conditions:
      - moisture
      - light
      - temperature
      - battery

Automation Trigger
HA%20Trigger

Automation Action
HA%20Action

See this note in the docs for the numeric_state trigger:

I think you are trying to trigger the automation when the state is both below 1 and above 100 at the same time. That isn’t possible.

You need to remove the the “above: 100”. If you still need to trigger the automation if the state is above 100 then you can just add a second trigger for above 100. then if it goes to below 1 or above 100 it will trigger.

Got it…removing the 100 worked.
Thanks!