Messaging after VERA decoupling
-
Yep, I have been running pushover, replacing the vera mobile push notification for quite a few years. It's been rock solid. I was particularly enamored by the ability to push snapshots of my security cameras to my apple watch... To make it easy I used Home Assistant as the integration relay so openLuup (and vera before that) sent the call to home assistant which then went to pushover.
-
I’m a bit old school, I still use Prowl with my Veras - https://www.prowlapp.com/
Here’s some code examples on how to use it.
function my_escape (s) s = string.gsub(s, " ", "+") return s end function my_prowl (appl, event, description) local prowl_url = "https://api.prowlapp.com/publicapi/add?apikey=" .. "put-your-api-code-here" .. "&application=" .. my_escape(appl) .. "&event=" .. my_escape(event) .. "&description=" .. my_escape(description) .. "&priority=-1" .. "&url=https://www.google.co.uk/" luup.inet.wget(prowl_url) end my_prowl ("Vera Home Controller", "Testing code", "this could any description")
Or something all in one..
luup.inet.wget("https://api.prowlapp.com/publicapi/add?apikey=Your-api-key-goes-here&application=Test+Event&event=Armed+Notification&description=The+DSC+alarm+system+has+been+armed&priority=1")
-
I've gotta ask, since Pushover essentially breaks their paid apps down into three "flavors" (Web browser, Android and iOS), how do they differentiate other channels like Home Assistant or IFTTT? Or do those get lumped into "Web" along with Chrome, etc.? (I assume every endpoint has to have a unique name, no matter what.)
-
First I want to say thank you to this group. You have given me ideas and help along the HA path for a long time.
I'm an old Vera user and planning to decouple from MIOS cloud now or after 7.32 but I'm stuck at how to push messages out.
I'm using Reactor and Scenes for Vera native messaging. What's a good solution going forward?Also want to mention that after reading the Decoupling document I have built a NTP GPS server on a Pi3B and enjoyed learning more about Linux along the way. I have it stabilized after learning 100 different ways.
Thanks
-
I've gotta ask, since Pushover essentially breaks their paid apps down into three "flavors" (Web browser, Android and iOS), how do they differentiate other channels like Home Assistant or IFTTT? Or do those get lumped into "Web" along with Chrome, etc.? (I assume every endpoint has to have a unique name, no matter what.)
@librasun it looks like they charge the onetime fee by user consumption endpoint groups (Android, iOS, and Desktop) and not integrations or apps.
-
First I want to say thank you to this group. You have given me ideas and help along the HA path for a long time.
I'm an old Vera user and planning to decouple from MIOS cloud now or after 7.32 but I'm stuck at how to push messages out.
I'm using Reactor and Scenes for Vera native messaging. What's a good solution going forward?Also want to mention that after reading the Decoupling document I have built a NTP GPS server on a Pi3B and enjoyed learning more about Linux along the way. I have it stabilized after learning 100 different ways.
Thanks
@droy I use the excellent Telegram plugin by @therealdb in OpenLuup, it should work on the Vera also.
-
@droy I use the excellent Telegram plugin by @therealdb in OpenLuup, it should work on the Vera also.