Page 1 of 1

Multi Partition Support

PostPosted: Thu Jul 21, 2016 6:00 pm
by John
Hello,

I am using the web app, and I am trying to get it to send push notifications for both zones. What is the supported way to do this?

Thank you!

Re: Multi Partition Support

PostPosted: Thu Jul 21, 2016 7:12 pm
by kevin
In this instance, you would have the alarmdecoder's address mask listening to everything, and in your notifications, you would filter by zone number per notification when selecting a zone fault type alert.

Re: Multi Partition Support

PostPosted: Thu Jul 21, 2016 7:20 pm
by John
kevin wrote:In this instance, you would have the alarmdecoder's address mask listening to everything, and in your notifications, you would filter by zone number per notification when selecting a zone fault type alert.


Sorry, I meant not zone, but partition.

If I have a keypad for each zone, (16&17), along with the alarm decoder on 18, how do set it up so that notifications are sent for an alarm/event on either partition, but I can still control P1 via the keypad (how it is currently set up)?

What are the proper settings on the mask page?

Thanks!

Re: Multi Partition Support

PostPosted: Thu Jul 21, 2016 9:03 pm
by kevin
You should be able to get notifications on events for every event on all partitions with default address mask FFFFFFFF.

Re: Multi Partition Support

PostPosted: Fri Jul 22, 2016 12:19 pm
by John
kevin wrote:You should be able to get notifications on events for every event on all partitions with default address mask FFFFFFFF.



While this does work, I had to disable armed/disarmed notifications. This is because if one partition was disarmed, and the other was armed, it would send me a disarmed/armed message every 15 or so seconds because of the flip flopping.

Is it somehow possible to get notifications for LRR messages? These messages seem to be the most stable, provide the most information, and the only thing missing would be the ability to filter the messages to just the status messages I wanted to see.

Thanks for all your help these past few days, Kevin.

Re: Multi Partition Support

PostPosted: Fri Jul 22, 2016 1:15 pm
by kevin
Yeah, I was afraid of that - it is something that is already in our roadmap to address thankfully (better multi-partition support throughout the system) right now we emulate it through the keypad page via a custom mask vs the global mask - in the future there will be a partition bit that we will look at to determine which partition the message was intended and put logic in the system to select partition in notifiers etc.

LRR events are also in our roadmap, but you could easily hook into it with the python library and do something yourself pretty quickly in the meantime. The LRR is supported fully by the alarmdecoder and its library, it just has not been implemented into the webapp yet (other than raw device logs) - but it would be pretty trivial to send an email to yourself on LRR message based off examples provided here https://github.com/nutechsoftware/alarm ... example.py