You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would like to call out to my own service/webhook/application when motion is detected. This could be things like
IFTTT
Pushover
Home Assistant
For example, my main use is Pushover as it seems the fastest in sending me alerts when motion is detected. IFTTT is 5-10 seconds, Email can be 1 second or 20 seconds. Pushover when called directly seems to be under 1 second. https://support.pushover.app/i44-example-code-and-pushover-libraries
However, it would be nice to support it in a generic way, whether that is calling out via shell exec to a command line application or?
It would support a set of variables such as Device e.g., Front Porch Username e.g. rayzorben OccuredAt e.g. Wed Dec 04 4:34PM Server e.g. Home ImageFilename e.g. /tmp/2019120316340033717.jpg which is an image on disk that represents the motion.
The text was updated successfully, but these errors were encountered:
Yep! Right now I am using the email capabilities of Pushover, but it still has to go through gmail SMTP server. And for some reason sometimes I get those in a heartbeat, and another times it just lags for 10-15 seconds. Right now it is 'good enough' but if I get frustrated I will just do what you suggest and modify the code around emails to call into libcurl or something using that API.
This executes a shell script on every motion. @rayzorben You also could execute your pushover command directly (as HTTP request over cURL). It is possibly not the best "solution" but it works fine until this feature is built-in.
Would like to call out to my own service/webhook/application when motion is detected. This could be things like
For example, my main use is Pushover as it seems the fastest in sending me alerts when motion is detected. IFTTT is 5-10 seconds, Email can be 1 second or 20 seconds. Pushover when called directly seems to be under 1 second. https://support.pushover.app/i44-example-code-and-pushover-libraries
However, it would be nice to support it in a generic way, whether that is calling out via shell exec to a command line application or?
It would support a set of variables such as
Device
e.g., Front PorchUsername
e.g. rayzorbenOccuredAt
e.g. Wed Dec 04 4:34PMServer
e.g. HomeImageFilename
e.g. /tmp/2019120316340033717.jpg which is an image on disk that represents the motion.The text was updated successfully, but these errors were encountered: