HomeGenie Forum

Automation Program Plugins and Wizard Scripting => APP Contributions => Topic started by: petediscrete on October 15, 2016, 09:30:43 PM

Title: GE Concord 4 Alarm control panel-anyone using one
Post by: petediscrete on October 15, 2016, 09:30:43 PM
I was curious to know if anyone was using the above control panel. The reason I ask is that it is an analogue panel and has a very interesting RS232 automation module which can be added. A number of other home automation programs have come up with 3rd party plugins which gives this panel remote web control and allows 24/7 monitoring over the internet.

I imagine that someone with the relevant skills could develop an app/plugin which would be an ideal addition to the HG application.
Title: Re: GE Concord 4 Alarm control panel-anyone using one
Post by: [email protected] on October 19, 2016, 10:30:12 AM
nope but I can recommend texecom's premier range :)
Title: Re: GE Concord 4 Alarm control panel-anyone using one
Post by: petediscrete on October 19, 2016, 12:28:05 PM
There's a really neat plugin for the GE Concord 4 running under Homeseer and Vera. I've tried both and it completely expands this control panel and helps to integrate it with the whole IoT concept. The events based concept really works well self based monitoring. I reckon a HG solution would work really well.
Title: Re: GE Concord 4 Alarm control panel-anyone using one
Post by: [email protected] on October 24, 2016, 11:45:37 AM
if there is a plugin for the others then it should be simple to port over
Title: Re: GE Concord 4 Alarm control panel-anyone using one
Post by: petediscrete on October 24, 2016, 07:12:55 PM
It's a Windows based program written I think in VB and runs in Linux with the aid of Mono. I'd say for someone with the skill set it would probably be a breeze to incorporate it into HG. It's quite a popular plugin in Homeseer.
Title: Re: GE Concord 4 Alarm control panel-anyone using one
Post by: [email protected] on October 25, 2016, 12:18:59 PM
bit of a google suggests looking at superbus 2000.. then drilling into that I found this:

and

this:
https://github.com/caesarsghost/device-type.condor4monitor/ (https://github.com/caesarsghost/device-type.condor4monitor/)

http://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwijla_j3PXPAhWMLMAKHU_-BL4QFggjMAA&url=http%3A%2F%2Fwww.crestron.de%2F%3Foption%3Dcom_crestron%26controller%3Dfilefromftp%26path%3D%2FProgrammier_DVD%2FProgrammierung_BUS-Systeme%2FGLA-BMS%2FFieldServer%2520USB%2520Stick%2FLibrary%2FDriver%2520Manuals%2FFS-8700-69_InterlogixAdvent.pdf&usg=AFQjCNEvD2bJlJkJ6gSdVApdOmI0SQtTjQ (http://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwijla_j3PXPAhWMLMAKHU_-BL4QFggjMAA&url=http%3A%2F%2Fwww.crestron.de%2F%3Foption%3Dcom_crestron%26controller%3Dfilefromftp%26path%3D%2FProgrammier_DVD%2FProgrammierung_BUS-Systeme%2FGLA-BMS%2FFieldServer%2520USB%2520Stick%2FLibrary%2FDriver%2520Manuals%2FFS-8700-69_InterlogixAdvent.pdf&usg=AFQjCNEvD2bJlJkJ6gSdVApdOmI0SQtTjQ)


Bit of reverse engineering / conversion to c# needed to try and see what is going on.
Title: Re: GE Concord 4 Alarm control panel-anyone using one
Post by: petediscrete on October 25, 2016, 07:01:27 PM
Yes you're on the right track.It uses the RS232 protocol to communicate>this is a copy of the protocol and exactly how it is applied.Hope you can read it.
Title: Re: GE Concord 4 Alarm control panel-anyone using one
Post by: [email protected] on October 26, 2016, 12:31:19 PM
That document looks similar style to those that I have from Texecom - I have a private repo on github at the moment with an HG interface module, HG interface test application, and then a texecom Interface test applicaiton and finally a texecom interface..

I would suggest these could be used as some sort of starting point but I cant share everything as I am under NDA :)


I could share the code I am using to process the raw messages, and I support using either Ethernet or serial.

I can certainly try and assist you, however I'm no dev!! and I'm learning slowly..

First things first I would suggest getting connected via a serial port to a desktop with a copy of visual studio and start writing an interface to communicate.. I wouldn't however advise developing in homegenie to start with due to the lack of debugging available.


I would then start by getting a checksum routine sorted as a starting point and prove that you can send a command correctly..

IE create something like (not real c#!)

bool SendCommand(string message){

  message = CreateMessageWithChecksum(message)
  resp = Serial.Send(message);
  if resp == ACK
     return true;
  if resp == NAK
     return false;
}

Eitherway you have everything you need to get started :)
Title: Re: GE Concord 4 Alarm control panel-anyone using one
Post by: petediscrete on October 27, 2016, 01:10:31 PM
I'll check that out and see what happens.

Thanks for your input.