Notification for Active Scene?

I would like to set a notification when a scene is activated (i.e. my entry sensors switched into armed mode) to notify us that the security system is armed.

It seems I can only set a notification when a sensor is tripped. Anyone know how to do this?

Thanks
Dan

What kind of notification do you think ? audio in your sound system, push message ?

No, just a push message showing “system armed” otherwise to find out the status of the house you need to open up, vera mobile, and look at the scenes to see which one is checked.

Like a script that would push a notification when sensor1,2,3,4,5,6 are set to armed. And a notification when it switches back to bypass.

You can go to into the scene >> advanced >> select device veraalerts >> send notification>> insert the message and the user.

It was something like this, and working ok for me.

Cor

  1. if you use homewave App…the code is:

create a scene and put in luup tab:

local http = require(“socket.http”)
http.request{url = “http://www.homewave.dreamhosters.com/push/push.php?pushdevice=yourcodeinsertedinyourhomewaveapp&message=Hello”}

define one trigger to send the message…

or

luup.call_action(“urn:intvelt-com:serviceId:HWPush1”, “SendMessage”, {Msg = “Open window Closet”}, 152)

where 152 is your push device created…

  1. if you are using push notification plugin…

set your push notification plugin
define your trigger
in advanced tab of scene
choose “push notification”
and “sendpushovernotification”
set title, priority, sound, etc.

excellent worked great!!!

Thanks

Thanks @piwtorak I used the method from @Cor and it worked!

Thanks
Dan

Do you guys have this running on UI7 ?I had scene notifications for my alarm system in UI5, but I cant get it to work in UI7. I cannot select vera alerts as a devices in the advanced options of the scene…