Originally posted by langenet
View Post
Announcement
Collapse
No announcement yet.
HS3 Pushover Plugin
Collapse
X
-
-
Originally posted by langenet View PostI guess this is just the linux version as I'm running HS on Windows and the latest looks like .52...(HS3)
Leave a comment:
-
I guess this is just the linux version as I'm running HS on Windows and the latest looks like .52...(HS3)
Leave a comment:
-
My linux log is full of these log's "tmrFlood Elapsed"
I've read in this thread that some else also noticed this behaviour. Was this problem fixed in HS3 and reappeared in HS4? I don't see any option to disable debug in pushover
(running Pushover PI 0.0.0.54)
Leave a comment:
-
zwolfpack, that worked. It is different from the documentation that states:
Code:Index(0) Device Name (Required - “All Clients” to send to all devices, separate multiple clients with the ASCII character 124 - | - String) Index(1) Message Body (Required - String) Index(2) Message Title (Optional - String) Index(3) Message Priority (Optional - normal/low/emergency/high - String) Index(4) Message Sound (Optional - 'pushover' etc, from the sound list - String) Index(5) Message URL (Optional - String) Index(6) Message URL Title (Optional - String) Index(7) API String (Optional - Same as in the configuration page - String) Index(8) Attachment Path (Optional - full file path to the attachment - String)
- 1 like
Leave a comment:
-
EDIT:
It’s been 2 years since I had issues...
https://forums.homeseer.com/forum/ho...36#post1126836
Leave a comment:
-
Try changing your script as follows
Code:Sub Main(p As String) Dim PushOverObject(8) As Object PushOverObject(0) = "All Clients" PushOverObject(1) = "This Is A Test! Hello World!" PushOverObject(2) = "" PushOverObject(3) = "normal" PushOverObject(4) = "pushover" PushOverObject(5) = Nothing PushOverObject(6) = Nothing PushOverObject(7) = Nothing PushOverObject(8) = Nothing hs.WriteLog("PushOver", "Begin - Sending Pushover Message") hs.PluginFunction("Pushover 3P", "", "Pushscript", PushOverObject) hs.WriteLog("PushOver", "End - Sending Pushover Message") End Sub
Leave a comment:
-
mrhappy ,I wanted to let you know that I have confirmed that something important broke with the HS3 Pushover Plugin after version 0.0.0.48. The ability to send a pushover message via a script.
This very basic script worked just fine under 0.0.0.48:
Code:Public Sub Main(ByVal Parms As Object)
Dim PushOverObject(8) As Object PushOverObject(0) = "All Clients" PushOverObject(1) = "This Is A Test! Hello World!" PushOverObject(2) = Nothing PushOverObject(3) = Nothing PushOverObject(4) = Nothing PushOverObject(5) = Nothing PushOverObject(6) = Nothing PushOverObject(7) = Nothing PushOverObject(8) = Nothing hs.WriteLog("PushOver", "Begin - Sending Pushover Message") hs.PluginFunction("Pushover 3P", "", "Pushscript", PushOverObject) hs.WriteLog("PushOver", "End - Sending Pushover Message")End Sub
Here is the error I see in the HS Log with version 0.0.0.54 for example.
Code:Mar-29 2:25:22 PM PushOver Begin - Sending Pushover Message Mar-29 2:25:22 PM Pushover 3P Attachment Does Not Exist - Sending Without Mar-29 2:25:22 PM Pushover 3P PushMessage Exception: Object reference not set to an instance of an object. Mar-29 2:25:22 PM PushOver End - Sending Pushover Message
- 1 like
Leave a comment:
-
Anyone is able to get notification infos from cmmand $$DTR:XXX: I got the message on my phone but not with the result.
thx
Leave a comment:
-
A minor thing but with the latest version (0.52), I cannot remove an old phone from the "Devices/group" list.
Under settings, it shows
Devices/Groups:
"Phone #1" - Nothing
"Phone #2" - Nothing
"Phone #3" - Nothing
When I try to remove "Phone #2", I get the following message:
Error: Item has already been added. Key in dictionary: 'Phone #2' Key being added: 'Phone #2'
"Phone #2" is not in the client list at pushover.net.
I am running HS3
Leave a comment:
-
There is a .54 version here : https://forums.homeseer.com/forum/ho...92#post1435192
Leave a comment:
-
I've also recently lost the ability to send pushover message via scripting after I updated to the latest version(0.52) from 0.48. This is my test script that used to work:
Code:Public Sub Main(ByVal Parms As Object) Dim CO(8) As Object CO(0) = "All Clients" CO(1) = "This is a test" CO(2) = "HOMESEER" CO(3) = Nothing CO(4) = Nothing CO(5) = Nothing CO(6) = Nothing CO(7) = Nothing CO(8) = Nothing hs.PluginFunction("Pushover 3P", "", "Pushscript", CO) End Sub
Rolled back to 0.48 and scripts works. Something either has changed or there is a bug in the plugin.
EDIT: I’m on HS3
Leave a comment:
-
I'm not sure if this is the correct place to ask this.
I've lost the ability to select a sound to be played when I am creating events. I have quite a few notifications set up to send a text message to one or more phones. Many of these I've had set up for a few years, and they haven't changed (I was able to pick different sounds for different notifications). I just created an event, and added a message as an action. The message sound drop down has nothing in it, so I'm unable to select a specific sound. Any thoughts?
Leave a comment:
Leave a comment: