Actions

Difference between revisions of "Increased volume on ringing signal"

From Zenitel Wiki

(New page: This article describes how to increase the volume during private ringing signal, and set it back to normal when the call is answered (or canceled). As from firmware version AMC 10.23 the ...)
 
 
(45 intermediate revisions by 3 users not shown)
Line 1: Line 1:
This article describes how to increase the volume during private ringing signal, and set it back to normal when the call is answered (or canceled).
+
{{AI}}
 +
This article describes how to increase (or decrease) the volume of the ringing signal or the Call Request tones, and set it back to normal when the call is answered (or canceled).
  
As from firmware version AMC 10.23 the volume to a station can be changed by the data command [[VOL]]. By using the evnt type [[9 - Private Ringing mode]] in the [[Event handler]], one can set a higher volume during the ringing, and set it back to a normal level when the call is answered (i.e. the Private Ringing mode goes off).
+
As from firmware version AMC 10.23 the volume to a station can be changed by the data command [[$VOL]].  
  
In AlphaPro,'''Exchange & System''' > '''Events''', create the event below.
+
== Change the volume of the Private Ringing signal ==
 +
By using the event type [[Private Ringing mode (Event Type)|9 - Private Ringing mode]] in the [[Event Handler]], one can change the volume during the ringing, and set it to a normal level when the call is answered.
  
When the ID+M (= subevent 2) call button is pressed (= ON), start a 3 second timer:
+
In [[AlphaPro]], go to [[Exchange_%26_System_%28AlphaPro%29#Events|Exchange and System -> Events]], press Insert and create the following event:
{|
+
[[File:Application15a.png|500px|left|thumb]]
|-
+
<br style="clear:both;" />
|width="100pt"|'''Event Owner''':
 
|width="300pt"|Stations with UDP, Id: 8 (all stations)
 
|-
 
|'''Event type''': || [[Private Ringing mode (Event Type)|09 - Private Ringing mode]]
 
|-
 
|'''When change to''': || ON or OFF
 
|-
 
|'''When related to''': || All
 
|-
 
|'''Action:''' || $[[VOL]] L[[Event_Handler#List_of_context_parameters|%1.dir]] U[[Event_Handler#List_of_context_parameters|%chg]](6,3)
 
|-
 
|}
 
<br>
 
  
When the ID+M (= subevent 2) call button is released (= OFF), stop the timer:
+
{{Code2|
{|  
+
[[$VOL]] L[[Event_Handler#List_of_context_parameters|%1.dir]] U[[Event_Handler#List_of_context_parameters|%chg]](6,3)
|-
+
}}
|width="100pt"|'''Event Owner''':
 
|width="300pt"|The substation
 
|-
 
|'''Event type''': || 30 - Station DAK as RCI
 
|-
 
|'''Subevent''': || 2
 
|-
 
|'''When change to''': || OFF
 
|-
 
|'''When related to''': || N/A
 
|-
 
|'''Action:''' || [[SET_TIMER|$ST]] L%1.dir W0 L9000
 
|-
 
|}
 
<br>
 
  
If the timer expires, e.g. the button has not been released, make a call to 101:
+
------------
{|
+
When a station starts to ring the volume is set to level 6 (of 9), and when the ringing stops the volume is set to level 3 (of 9).
|-
 
|width="100pt"|'''Event Owner''':
 
|width="300pt"|The substation
 
|-
 
|'''Event type''': || [[Event Timeout (Event Type)|21 - Event timeout]]
 
|-
 
|'''Subevent''': || 0
 
|-
 
|'''When change to''': || ON
 
|-
 
|'''When related to''': || Directory number: 9000
 
|-
 
|'''Action:''' || [[CALL SETUP|$CALL]] L%1.dir L101
 
|-
 
|}
 
<br><br>
 
  
If a Call Request should be made, and not a direct call, just substitute the action command ''$CALL L%1.dir L101'' with ''$SM L%1.dir L101''. This will send a call request to station 101.
+
== Change the volume of the "Call Request" tone ==
 +
By using the event type [[Priority Mail in Idle (Event Type)|12 - Priority Mail in Idle ]] in the [[Event Handler]], one can change the volume when there are Call Requests in the queue, and set it to a different level during the conversation. This also applies to the ringing group feature.
  
===M-key Call Button===
+
In [[AlphaPro]], go to [[Exchange_%26_System_%28AlphaPro%29#Events|Exchange and System -> Events]], press Insert and create the following event:
As an alternative to ID+M, M-key can be used for Delayed Call. Substations are not equipped with M-key, but it is easy to adapt; simply connect a 2K2 resistor across the a- and b-wire when the call button is pressed.
+
[[File:Application15b.png|500px|left|thumb]]
 +
<br style="clear:both;" />
  
In AlphaPro,'''Users & Stations''' > '''Events''', create the events below.
+
{{Code2|
 +
[[$VOL]] L[[Event_Handler#List_of_context_parameters|%1.dir]] U[[Event_Handler#List_of_context_parameters|%chg]](6,3)
 +
}}
  
When the M-key is pressed (= ON), start a 3 second timer:
+
When a station receives a Call Request or Ringing Group call the volume is set to level 6. When the call is answered, the volume is set to level 3 (of 9).
{|
 
|-
 
|width="100pt"|'''Event Owner''':
 
|width="300pt"|The substation
 
|-
 
|'''Event type''': || [[M-key (Event Type)|31 - M-key]]
 
|-
 
|'''Subevent''': || 1
 
|-
 
|'''When change to''': || ON
 
|-
 
|'''When related to''': || All
 
|-
 
|'''Action:''' || [[SET_TIMER|$ST]] L%1.dir W30 L9000
 
|-
 
|}
 
<br>
 
  
 
+
[[Category:AlphaCom Applications]]
When the M-key is released (= OFF), stop the timer:
+
[[Category:ICX-AlphaCom Applications]]
{|
+
[[Category:Applications using Event Handler]]
|-
 
|width="100pt"|'''Event Owner''':
 
|width="300pt"|The substation
 
|-
 
|'''Event type''': || [[M-key (Event Type)|31 - M-key]]
 
|-
 
|'''Subevent''': || 1
 
|-
 
|'''When change to''': || OFF
 
|-
 
|'''When related to''': || All
 
|-
 
|'''Action:''' || [[SET_TIMER|$ST]] L%1.dir W0 L9000
 
|-
 
|}
 
<br>
 
 
 
 
 
If the timer expires, e.g. the button has not been released, make a call to 101:
 
{|
 
|-
 
|width="100pt"|'''Event Owner''':
 
|width="300pt"|The substation
 
|-
 
|'''Event type''': || [[Event Timeout (Event Type)|21 - Event timeout]]
 
|-
 
|'''Subevent''': || 0
 
|-
 
|'''When change to''': || ON
 
|-
 
|'''When related to''': || Directory number: 9000
 
|-
 
|'''Action:''' || [[CALL SETUP|$CALL]] L%1.dir L101
 
|-
 
|}
 
<br>
 
 
 
== IP substations ==
 
In AlphaPro,'''Users & Stations''' > '''Events''', create the events below.
 
 
 
When the call button (Subevent = 1) is pressed (=ON), start a 3 second timer:
 
{|
 
|-
 
|width="100pt"|'''Event Owner''':
 
|width="300pt"|The IP substation
 
|-
 
|'''Event type''': || [[Station DAK key as RCI (Event Type)|30 - Station DAK as RCI]]
 
|-
 
|'''Subevent''': || 1
 
|-
 
|'''When change to''': || ON
 
|-
 
|'''When related to''': || N/A
 
|-
 
|'''Action:''' || [[SET_TIMER|$ST]] L%1.dir W30 L9000
 
|-
 
|}
 
<br>
 
 
 
When the call button is released (= OFF), stop the timer:
 
{|
 
|-
 
|width="100pt"|'''Event Owner''':
 
|width="300pt"|The IP substation
 
|-
 
|'''Event type''': || 30 - Station DAK as RCI
 
|-
 
|'''Subevent''': || 1
 
|-
 
|'''When change to''': || OFF
 
|-
 
|'''When related to''': || N/A
 
|-
 
|'''Action:''' || [[SET_TIMER|$ST]] L%1.dir W0 L9000
 
|-
 
|}
 
<br>
 
 
 
If the timer expires, e.g. the button has not been released, make a call to 101:
 
{|
 
|-
 
|width="100pt"|'''Event Owner''':
 
|width="300pt"|The IP substation
 
|-
 
|'''Event type''': || [[Event Timeout (Event Type)|21 - Event timeout]]
 
|-
 
|'''Subevent''': || 0
 
|-
 
|'''When change to''': || ON
 
|-
 
|'''When related to''': || Directory number: 9000
 
|-
 
|'''Action:''' || [[CALL SETUP|$CALL]] L%1.dir L101
 
|-
 
|}
 
<br><br>
 
 
 
[[Category:Applications]]
 

Latest revision as of 11:22, 8 July 2022

AI.png

This article describes how to increase (or decrease) the volume of the ringing signal or the Call Request tones, and set it back to normal when the call is answered (or canceled).

As from firmware version AMC 10.23 the volume to a station can be changed by the data command $VOL.

Change the volume of the Private Ringing signal

By using the event type 9 - Private Ringing mode in the Event Handler, one can change the volume during the ringing, and set it to a normal level when the call is answered.

In AlphaPro, go to Exchange and System -> Events, press Insert and create the following event:

Application15a.png


Action commands:

$VOL L%1.dir U%chg(6,3)



When a station starts to ring the volume is set to level 6 (of 9), and when the ringing stops the volume is set to level 3 (of 9).

Change the volume of the "Call Request" tone

By using the event type 12 - Priority Mail in Idle in the Event Handler, one can change the volume when there are Call Requests in the queue, and set it to a different level during the conversation. This also applies to the ringing group feature.

In AlphaPro, go to Exchange and System -> Events, press Insert and create the following event:

Application15b.png


Action commands:

$VOL L%1.dir U%chg(6,3)


When a station receives a Call Request or Ringing Group call the volume is set to level 6. When the call is answered, the volume is set to level 3 (of 9).