Actions

Difference between revisions of "2-2c. CCTV with data (1) - Event Handler (solution)"

From Zenitel Wiki

Line 45: Line 45:
 
* ''Use the software "PuTTY" to verify that the correct data is being transmitted from the AlphaCom (In PuTTY use the protocol = "Raw").''
 
* ''Use the software "PuTTY" to verify that the correct data is being transmitted from the AlphaCom (In PuTTY use the protocol = "Raw").''
  
====Relay control. Alternative solution ====
 
This solution reduces the number of events. Instead of using one event for each substation, one can set the "When Related To" = "All", and use the IF statement to check who is calling.
 
  
[[File:2-2b solution9.PNG|left|thumb|500px|This event is triggered by calls from any station. The IF statement is used to check who the caller is]]
 
<br style="clear:both;" />
 
  
Action string:
 
IF %op(%2.dir,=,107)
 
RCO 5 ON
 
ENDIF
 
IF %op(%2.dir,=,108)
 
RCO 6 ON
 
ENDIF
 
 
Explanation: If the call is from 107, turn on RCO 5. If the call is from 108, turn on RCO 6.
 
 
 
 
When the Control Room station returns to idle, the outputs should go off:
 
[[File:2-2b solution10.PNG|left|thumb|500px|Turn all outputs off whenever the Control Room returns to idle]]
 
<br style="clear:both;" />
 
  
 
<br><br><br><br>
 
<br><br><br><br>

Revision as of 16:36, 27 September 2013

System configuration


Solution

Call buttons:

  • Pressing the call button at the Entrance or at the SOS Point should generate a Call Request (623 + 101) to the Control Room.
Program DAK 1 of the Entrance station to "I 623 I 101"


Program DAK 1 of the SOS Point station to "I 623 I 101"



CCTV Control:

  • When a Call Request (= mail) is received at the Control Room, the AlphaCom should send ASCII text on the EDO port 1 to the CCTV system, telling which camera to connect to which monitor.
  • The EDO output should be "C1M1" when station 107 is calling, and "C2M1" when station 108 is calling.


When the Control Room receives Call Request (The Received Mail event goes ON), and the caller is station 107, send "C1M1" to the EDO port:

Received Mail ON at 101 when called from station 107 will trigger the EDO command


When the Control Room receives Call Request (The Received Mail event goes ON), and the caller is station 108, send "C2M1" to the EDO port:

Received Mail ON at 101 when called from station 107 will trigger the EDO command



  • The AlphaCom should be set as a "TCP/IP Server", and TCP port number 4005 should be used for the communication (Hint: Remember to define the port in "Filters" setting).

In Exchange & System > Serial Ports, set the EDIO 1 port as TCP/IP Server, using port 4005:

EDIO 1 port as TCP/IP Server, using port 4005


In AlphaWeb, Filters settings, define TCP port 4005:

Defining TCP port 4005


In AlphaWeb, Filters settings, enable the TCP port 4005 on relevant ethernet port:

Enabling the TCP port 4005



  • Use the software "PuTTY" to verify that the correct data is being transmitted from the AlphaCom (In PuTTY use the protocol = "Raw").








Related articles