Pushbullet notification with miflora sensor

Hi, im trying my first automation, i would like to get a notification in my mobile with pushbullet when my misensor flora goes under a defined value. I get no notice, can u guys se any errors in my code?

sensor:
  - platform: miflora
    mac: "xx:xx:xx:xx:xx:xx"
    name: Blomsensor
    median: 3
    monitored_conditions:
      - temperature
      - light
      - temperature
      - conductivity
      - battery

notify:
  - name: notify
    platform: pushbullet
    api_key: xxxxxxxxxxxxxxxxxxxxxx

automation:
  - alias: Vattna Fikusen
    trigger:
      - platform: numeric_state
        entity_id: sensor.blomsensor_conductivity
        below: 50
    action:
      service: notify.mypushbullet
      data_template:
        title: "Jag behöver vattnas!"
        message: "Jag behöver vattnas för att just nu har jag såhär mycket vatten"

  - alias: Vattna inte mer nu!
    trigger:
      - platform: numeric_state
        entity_id: sensor.blomsensor_conductivity
        above: 51
    action:
      service: notify.mypushbullet
      data_template:
        title: "Tack!"
        message: "Sluta dränka mig, nu är jag nöjd!"

I get no errors when checking config

Replace ‘notify.mypushbullet’ with ‘notify.notify’ (or rename your notify service to ‘mypushbullet’)

1 Like