Skip to content

Trying to set up HA notification to send pushover message with Arm/Disarm and User who did it #539

Answered by prohidium
prohidium asked this question in Q&A
Discussion options

You must be logged in to vote

OK, I figured it out via trial and error and by listening to topic /paradox/events/raw messages via MQTT/Configure

This is for a Paradox MG5050 panel with an IP150+ ip connection.

Here is the yaml for the automation:

alias: Home Alarm Arming or Disarming Email Notification
description: ""
triggers:

  • trigger: mqtt
    topic: paradox/events/raw
    conditions:
  • condition: template
    value_template: >-
    {{ trigger.payload_json['id'] == 2 or trigger.payload_json['id'] == 3 or
    trigger.payload_json['id'] == 4 or trigger.payload_json['id'] == 5 or
    trigger.payload_json['id'] == 6 or trigger.payload_json['id'] == 7 }}
    enabled: true
    actions:
  • action: notify.email_main
    metadata: {}
    data:
    message: Home Alarm is {…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@prohidium
Comment options

@yozik04
Comment options

Answer selected by prohidium
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants