Arlen Posted July 23, 2018 Share Posted July 23, 2018 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 More sharing options...
Dana Posted July 23, 2018 Share Posted July 23, 2018 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 More sharing options...
ternal Posted July 23, 2018 Share Posted July 23, 2018 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 Arlen 1 Link to comment Share on other sites More sharing options...
Arlen Posted July 23, 2018 Author Share Posted July 23, 2018 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 More sharing options...
dmob Posted July 23, 2018 Share Posted July 23, 2018 You could also try Pushbullet. ternal 1 Link to comment Share on other sites More sharing options...
FrancescoDiMuro Posted July 23, 2018 Share Posted July 23, 2018 @Arlen @ternal For your information, there is an UDF to automate Skype Click here to see my signature: Spoiler ALWAYS GOOD TO READ: Forum Rules Forum Etiquette Link to comment Share on other sites More sharing options...
ternal Posted July 23, 2018 Share Posted July 23, 2018 @FrancescoDiMuro thank you I tried skype but it uses to much resources and bandwidth on my phone. @dmob I will try out pushbullet, thanks for the info Link to comment Share on other sites More sharing options...
alienclone Posted July 23, 2018 Share Posted July 23, 2018 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 More sharing options...
alienclone Posted July 23, 2018 Share Posted July 23, 2018 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. ternal 1 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 More sharing options...
ModemJunki Posted July 23, 2018 Share Posted July 23, 2018 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 More sharing options...
alienclone Posted July 23, 2018 Share Posted July 23, 2018 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 More sharing options...
marvel_master Posted February 16, 2021 Share Posted February 16, 2021 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now