Author Topic: Comunicating from VoxCommando to Tasker  (Read 1740 times)

0 Members and 1 Guest are viewing this topic.

PegLegTV

  • $upporter
  • Hero Member
  • *****
  • Posts: 500
  • Karma: 43
    • View Profile
Comunicating from VoxCommando to Tasker
« on: August 19, 2015, 10:26:43 PM »
how to use the TCP Server and tasker to get info from VC,

the simplest way is to have a separate html for each thing you want tasker to have access to, so if you have an app for your living room

you may want these options in your app

LRL=Living Room Lights  (Text in the html)

LRLStatus.html (ON or OFF)
FanStatus.html (ON, Off, Low, Med, High)
LRLDim.html      (10,20,30,40....)

if using this method then I would suggest creating a new folder called "tasker" in your plugins\TCP\html folder and saving your status html files there, as this method could add up to several files in a hurry

you would have VC write the files whenever you toggle the lights or change the fan settings

how to get the Light status using tasker

use HTTP Get:

server:Port
Your VC IP:Your port

Path
/html/tasker/LRLStatus.html 

at the bottom make sure you check

"Countinue Task After Error"


If you prefer to have less html files you could do something similar to this:

Code: [Select]
<LRLStatus>ON</LRLStatus>
<FanStatus>OFF</FanStatus>
<LRLDim>40</LRLDim>

then you would have to use taskers regex to get the information you need