Welcome to Smart Home Forum by FIBARO
Dear Guest,
as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.
As a member you can:
- Start new topics and reply to others
- Follow topics and users to get email updates
- Get your own profile page and make new friends
- Send personal messages
- ... and learn a lot about our system!
Regards,
Smart Home Forum by FIBARO Team
Question
trevorbr 0
Is there anyone that can assist with setting up my alarm correctly. I have the following:
- HC2 running 4.024 beta
- DSC PC1864 alarm
- Envisalink and IT-100.
I at first tried the IT-100, but could not figure out how to set up the alarm as all of them required an IP address. I then purchased a Envisalink 3.
Under plug ins I have set up the DSC Alarm with a control panel, using port 4025. It has installed 64 Zones under hidden devices. I have an error: " Attention, integration with the alarm control panel is not fully configured. The control panel does not have a alarm partition named Fibaro. "
Using a virtual device, I am able to arm and disarm the alarm by means of LUA:
Arm:
-- Setting up the connection information
TL150 = Net.FHttp("192.168.0.X", 80)
-- Setting up the basic authentication (username,password)
TL150:setBasicAuthentication("user","1234")
-- The actual string for disarm, including the pincode (1234)
response = TL150:GET("/2?A=3&p=1&X=1234")
fibaro:log(response)
Disarm:
-- Setting up the connection information
TL150 = Net.FHttp("192.168.0.X", 80)
-- Setting up the basic authentication (username,password)
TL150:setBasicAuthentication("user","1234")
-- The actual string for disarm, including the pincode (1234)
response = TL150:GET("/2?A=4&p=1&X=1234")
fibaro:log(response)
More than that I can not get right. I would like to be bale to do the following:
1) View that status of each zone. (how ever not important)
2) Set up an easier way to arm and disarm (if possible)
3) Set up scenes for the zones. I.e. Use the sensors to switch on lights, etc.
If there is anyone that is able to guide me in this, I would appreciate it. I do apologies for the long winded message.
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.