The 1.4.X firmware on the EVL4 extends some of the known "services" and gives home IoT tinkerers a few more options. Below is a list I received from Envisacor engineering this week. I have tried most of them on our bench DSC system but I haven't tried them on UNO or Honeywell.
I used the common command-line program "curl" to test. The Envisalink's HTTP server uses basic AUTH for authentication so all requests require the username and password, in my example the default password of "user" is still used. You should always change your local password in a real-world setting. As well, the Envisalink does not support TLS so DO NOT use these HTTP calls over the Internet. Only use them on your private LAN.
As this is really a hack of a webpage on the Envisalink, the format of the calls are somewhat cryptic. My user code on my test panel is 1234 and my IP is 192.168.0.177. To arm your DSC system with a code you can issue this curl command:
Code: Select all
curl -s --user user:user 'http://192.168.0.177/2?A=3&p=1&X=1234' > /dev/null
A = 3 means ARM option with code
p = 1 means partition 1
X = 1234 is the user code
All the arguments are case sensitive and MUST appear in the order listed.
The list of known options are:
1 - DSC, UNO - No code options (PGM Toggle, Arm Stay, Arm Away and Zero Entry Delay Arming)
3 - Arm Away with code, DSC, Honeywell, and UNO
4 - Disarm with code, DSC, Honeywell, and UNO
A - Arbitrary keystoke, DSC, Honeywell, and UNO
Option 1 - Special DSC and UNO options without a code requirement
Example
Code: Select all
curl -s --user user:user 'http://192.168.0.177/2?A=1&P=1&p=1' > /dev/null
1 - Toggle PGM 1
2 - Toggle PGM 2
3 - Toggle PGM 3
4 - Toggle PGM 4
S - Arm partition without code in STAY mode
A - Arm partition without code in AWAY mode
Z - Arm partition without code in Zero Entry Delay mode
Option 3 - Arm Away with code
Example
Code: Select all
curl -s --user user:user 'http://192.168.0.177/2?A=3&p=1&X=1234' > /dev/null
Option 4 - Disarm with code
Example
Code: Select all
curl -s --user user:user 'http://192.168.0.177/2?A=4&p=1&X=1234' > /dev/null
Option A - Send arbitrary keystroke up to 10 digits.
This options allows you to queue and transmit a string of keystrokes as if you were at the keypad.
Example
Code: Select all
curl -s --user user:user 'http://192.168.0.177/2?A=A&p=1&X=123456789*#' > /dev/null