Pushover and devices

Question, is there a way to send a pushover notification to a specific device? I have other applications that can. The pushover API seems to support them (after a brief review). So how can this be done in HA? I already have pushover working sending out info to everyone and since I am working on stuff don’t really want the wife to get all my debugging notifications at least till I am done. Besides there are some device specific info that could be sent but everyone doesn’t need to know if, let’s say “my battery is low”.

ThanX,
mike

Yes there is. I had some time setting it up too. Let me find my setup and post it for you.

Setup your config as normal:

notify:
  - platform: pushover
    name: "your account name"
    api_key: "your key"
    user_key: "your user key"

Then setup an automation like this:

  - alias: 'Battery Low Alert - Front Door'
    trigger:
      platform: numeric_state
      entity_id: sensor.kwikset_touchpad_electronic_deadbolt_battery_level_8_0
      below: 50
    action:
      - service: notify."your account name"
        data:
          message: "Time to change the front door's battery"
          title: ""
          target:
            - "user one"

This shows just one user. You can add more if needed.