Premise Premise newbie also seeking answers

Motorola Premise

incontrol

New Member
Hi all,
I am a beginner with premise , and love the remote access interface, so much so I have stated a simply interface to control and monitor equipment remotely , however I have run into difficulties, could I ask for some pointers from you guys , also I have reviewed the new and comprehensive guide produced by 123 ..it great but offers some many routes to results , could you recommend the simplest method for me firstly to :

1/ I would like to monitor and control my intelligent security alarm panel, made by Cytech “ called Comfort "cytech.biz" ( by the way it’s a great panel if you guys want to check it out… and has substantial array add on’s modules . one of its best features is the TRUE voice messaging ) it can be interface serial and by Ethernet , this is what I have so far . ( I’m using serial , will attaché the protocol doc) via download

[codebox]if sysevent.newVal = True Then

'Read incoming ascii data line by line
For i = 0 To this.RxLinesRemaining

'Read queued command
Select Case mid (this.RxTextLine,2,4)
'If received command matches any of these...
Case "MD00":

If Not this.SecurityState = "1" Then

' Set this.SecurityState = this.Disarm
this.SecurityState = "1"
End If
case "MD03":
If Not this.SecurityState = "2" Then

this.SecurityState = "2"
End If
case "MD02":
If Not this.SecurityState = "5" Then

this.SecurityState = "5"
End If
case "MD01":
If Not this.SecurityState = "0" Then

this.SecurityState = "0"
End If


case "V?28"
If Not this.SecurityReady = true then

this.SecurityReady = true

End if
'else

'if not this.SecurityReady = false then
'this.SecurityReady = false

'If Not this.SecurityState = "6" Then

'this.SecurityState = "6"
'end if
'end if


End Select
'goto next command in buffer
this.RxNextLine = TRUE
Next

End If
[/codebox]
Q: I would like to monitor all my zones, and show the status, I would also like to monitor the status of input and outputs connected to the comfort systems
Have I gone about it wrong, does an easy method exists with the extended security panel module

Richard
 
Back
Top