Page 1 of 1
Autoremote for pc status
Posted: Sat Apr 30, 2016 6:03 pm
by HarleyRider
I am using autoremote to have eventghost send back a message to my phone as to whether my pc is on or off. I have it set with an autoremote message to the pc. I have a scene set up with an image of a power button that is GRAY. When autoremote sends the message and receives a reply it changes the Power button image to a particular color depending on the pc it checks.
I have this scene checking the status of 4 PC's.
Apparently, I have missed something in setting this up because I powered one of them down, but the tasker task still said it received a message from the machine and changed my power image. With the machine off it shouldn't have received a message from the machine and the power button image should have remained Gray. Can anybody guide me down the path of solving this so it will give me the correct status of the PC's? Thanks.
Re: Autoremote for pc status
Posted: Mon May 02, 2016 2:01 am
by HarleyRider
I guess nobody here can help solve this issue.
Re: Autoremote for pc status
Posted: Mon May 02, 2016 2:13 am
by kgschlosser
i am not familiar with autoremote but this can all be accomplished very easily using the email plugin, you can have tasker send off a text message to an email address that you have the email plugin monitoring and when the email plugin reads the email it will see the message and respond back and if there is no response in a certain time then do whatever
and the email plugin you can set it so that it will only do something if the sender is correct and the message is correct so you don't have to make a special email address for it (tho i did was nicer that way)
i have not tested the email plugin as of yet for sending images if it doesn't i am going to add it.
Re: Autoremote for pc status
Posted: Mon May 02, 2016 4:02 am
by krambriw
I guess nobody here can help solve this issue.
Be more patient, not everybody is spending the weekend in front of the pc. On top of that, someone using & being familiar with autoremote should be looking into your question. I am not one of those.
Anyway, obviously some caching is happening in your solution. A pc that is off is dead and cannot respond, that is for me totally clear.
If you hope for help, also provide more details of you setup with pictures of your configuration
Re: Autoremote for pc status
Posted: Wed May 18, 2016 11:49 pm
by mikeparkie
I have a rather simply solution I use.
In Tasker, I have 1 task using the AutoRemote plugin (sent through EventGhost), message "PCAreYouOn". If the message is received then the below macro responds. If it fails then just use the %err option in the task. You can then add your images etc once you get it working. I'm no Tasker/EG guru but that works well enough for me.
EG Macro
Code: Select all
<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1722">
<Macro Name="PC Are you on?" Expanded="True">
<Event Name="AutoRemote.Message.PCAreYouOn" />
<Action Name="AutoRemote: Response">
AutoRemote.SendMessage(u'Phone', u'goo.gl/xxxx', u'REDACTED', u"this is your PC, I'm on dude", u'', u'', u'', '', u'', u'')
</Action>
</Macro>
</EventGhost>