Have been working on a HVAC Project that utilizes PINK for the user interface w/web capabilities. http://forum.embeddedethernet.com/viewt ... f=8&t=2344
Recently got an Amazon Dot aka Alexa, (really cool), and started linking my other home automation devices with it; including the Harmony Hub- to turn on the TV and stereo, the Insteon hub (ISY), Alexa, turn on the Living Room Lights...
along with the music and other amusing things Alexa has, it is a great addition to any home automation system.
If you are not familiar with ISY: https://www.universal-devices.com/resid ... 4i-series/ ,izzy as Alexa calls it, this process of getting Alexa to change a NB_Var requires you have one and the account to have ISY portal access.
http://forum.universal-devices.com/topi ... isyportal/
This service is a 2 year subscription for about $1.75 a month.
The process is Alexa, set office thermostat to 70°; Alexa looks up "office thermostat" in her list of Smart Home Skills (Through the ISY portal), this changes a State Variable: "Office Thermostat" in the ISY 's Programs>Variables Tab to 70.
The ISY initiates a program to POST "70" to Nb_var02 on the PINK/index.html page. This is done with its Configuration>Networking>Network Recourse tab
You can only pass numbers not strings at this time.
Flow:
Alexa> ISY> PINK
Set up the Configuration>Networking>Network Recourse tab like this:
Click Add to set up Authorization to the PINK

The Body of the resource editor is:
Nb_var02=${var.2.1}
${var.2.1}
2 = State var (1 for integer) we want State var to trigger the Program and POST the data
1 is the 1st State var ID Left column in Programs>Variables>State tab
This POST's ISY State variable in ID slot 1 to NB_var02
Make a program to trigger the event when $Office_thermostat changes

Once you add the Spoken mapping through the Universal Devices Portal, My state variable = office_thermostat (1) and
clicking on the Discover Devices in the Amazon Alexa > Smart Home tab then you can get Alexa to change a Nb_var in PINK.
I am told that the PINK throws an error of 300 or 301 when Posting in this manor, maybe something on your end that could be fixed?
So far this has been a one way street of information flow I cannot get the PINK to send data to ISY.
I am not a HTML/.JS guru and in fact had plenty of help on the files in my PINK. I need help completing that step if PINK is to talk to ISY
This is the info I have:
if you put this in your web browser
http://ISY_IP/rest/vars/set/2/2/75
You get this
<RestResponse succeeded="true">
<status>200</status>
</RestResponse>
Which changes the 2nd state variable in the isy to 75
let me know if there is any other info I can provide.
Mike2545