Jump to content

Notificacions on android phone


Recommended Posts

Hi there

I'm trying to find a way to get notified to my Android phone when I finish a task on my PC (Using Autoit ofc.). I tried using email but on phone it take around 15 mins to show up any new emails. Does anyone know any faster way to get notified instantly. Thanks

Link to comment
Share on other sites

Depending on your cell carrier you might be able to email to a text message.  For example with Verizon, if you send an email to (phone number)@vtext.com it will arrive as a text message.  Of course that won't help if the delay is on the email sending end.

Link to comment
Share on other sites

22 minutes ago, ternal said:

If you have skype on your phone and your pc and constant internet connection you could have autoit send you something through skype.

 

Kind regards, Ternal

I was just trying that right now, thanks.

Link to comment
Share on other sites

if you go with Pushbullet i have a function i found somewhere here on the forums for sending pushes...

Func Send_Pushbullet($sTitle, $sBody)
    
    Local $sPD = '{"type": "note","body": "' & $sTitle & '<>' & $sBody & '"}'
    $oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
    $oHTTP.Open("POST", "https://api.pushbullet.com/v2/pushes", False)
    $oHTTP.setRequestHeader("Authorization", "Bearer " & "YOUR_API_KEY_HERE")
    $oHTTP.SetRequestHeader("Content-Type", "application/json")
    $oHTTP.Send($sPD)

EndFunc   ;==>Send_Pushbullet

 

If @error Then
    MsgBox(262192, "", @ComputerName & " slaps " & @UserName & " around a bit with a large trout!")
EndIf

"Yeah yeah yeah patience, how long will that take?"  -Ed Gruberman

REAL search results  |  SciTE4AutoIt3 Editor Full Version

Link to comment
Share on other sites

if you are big into automation and have an android then you should have Tasker on your phone, i would suggest also adding Join, its like Pushbullet but with TONS more options. also suggest getting some of the AutoApps plugins for Tasker, mainly the AutoRemote plugin, it lets you send commands from anywhere to your phone, then your phone can react to each command for total automation. you can also use EventGhost and have your phone send commands to your pc which can then be run with Autoit. then stand back and watch as the machines take over the planet and rule the humans.

If @error Then
    MsgBox(262192, "", @ComputerName & " slaps " & @UserName & " around a bit with a large trout!")
EndIf

"Yeah yeah yeah patience, how long will that take?"  -Ed Gruberman

REAL search results  |  SciTE4AutoIt3 Editor Full Version

Link to comment
Share on other sites

38 minutes ago, alienclone said:

if you are big into automation and have an android then you should have Tasker on your phone, i would suggest also adding Join, its like Pushbullet but with TONS more options. also suggest getting some of the AutoApps plugins for Tasker, mainly the AutoRemote plugin, it lets you send commands from anywhere to your phone, then your phone can react to each command for total automation. you can also use EventGhost and have your phone send commands to your pc which can then be run with Autoit.

This is all very interesting. Have you any examples which you have created for phone to AU3 work?

39 minutes ago, alienclone said:

then stand back and watch as the machines take over the planet and rule the humans.

You mean they haven't already?

Always carry a towel.

Link to comment
Share on other sites

19 minutes ago, ModemJunki said:

This is all very interesting. Have you any examples which you have created for phone to AU3 work?

You mean they haven't already?

i dont have any phone to au3 examples because i havnt used that route in a few years, all my needs currently are only pc to phone.

but the main concept is... autoapps sends command to eventghost, eventghost is programmed to run specified au3 script when it receives specific command from autoapps.

 

If @error Then
    MsgBox(262192, "", @ComputerName & " slaps " & @UserName & " around a bit with a large trout!")
EndIf

"Yeah yeah yeah patience, how long will that take?"  -Ed Gruberman

REAL search results  |  SciTE4AutoIt3 Editor Full Version

Link to comment
Share on other sites

  • 2 years later...

Hello,

I hope it is okay to use this thread for my question. 

My goal is to send push notifications to my smartphone. 
The source is an autoit program which initiates the push notification.

I found several internet services which can do that. 
The services
https://pushover.net/pricing can send 7500 messages/month, if you buy the smartphone app.
30 day trial 

Or the service
https://www.pushbullet.com/
can send 750 messages/month for free. If you want to send more, you have to pay for it. 

The website gives some alternatives:
https://www.reddit.com/r/Android/comments/3t6dnz/for_those_looking_for_alternatives_to_pushbullet/

Question 1: 
Still, I prefer pushover or pushbullet. Or does exists in the year 2021 some better alternatives?

Question 2: 
What is the best way to send a autoit message to my smartphone? 
I have a linux Raspi and write on the shell a small script, which can send messages to my smartphone. That works at this moment. But i have not a good idea how i can trigger this shell script from my windows pc, where my autoit program works. 

Anybody has a good idea for the communication between my autoit windows pc and my raspi linux system (has mysql database, php, apache …)? 

Question 3:
The user alienclone wrote a autoit function 
https://www.autoitscript.com/forum/topic/194960-notificacions-on-android-phone/?do=findComment&comment=1398168

That could send push messages directly from an autoit program to my smartphone. I think this still works?!
 

Regards

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...