
7K
•
Chapter 20
20-8
Example: An Activity Timer
The repeater and each receiver input has an activity timer available to cause a
macro to be triggered after activity on the repeater has ceased. But,
sometimes one activity timer is not enough. A
User Timer
can be used to
implement one or more additional activity timers.
Three macros will be required to implement the activity timer: one is triggered
when the repeater is activated by a receiver, a second is triggered when all
receivers are inactive, and a third is triggered when the timer times out. Our
example triggers a macro that speaks a message, but any commands can be
executed at that time.
For this example, we’ll create macros 8711, 8712, and 8713. We’ll use timer
#8.
First, setup the timer and assign the macros.
; Setup
(PW) 49 08 03 3000 * ; Set Timer 300.0 seconds
(PW) 49 08 02 8713 * ; Set Timer Macro
(PW) 26 11 8711 *
; Set Any-Rx-Active Macro
(PW) 26 09 8712 *
; Set All-Rx-Inactive Macro
Enter the macro that is triggered when any receiver is active. This macro stops
the timer.
; Macro: Any-Rx-Active: Stop Timer
(PW) 20 8711 (PW) 49 08 00 *
; stop timer
Enter the macro that is triggered when all receivers are inactive. This macro
starts the timer.
; Macro: All-Rx-Inactive
(PW) 20 8712 (PW) 49 08 01 *
; start timer
Enter the macro that is triggered when the timer times out. This macro can
perform any operation, but in our example it speaks a message.
; Macro: Timer Timeout, speak 1-second-pause + “Net”
(PW) 20 8713 (PW) 15 9960 0000 0331 *
Содержание 7K
Страница 4: ......
Страница 72: ...7K Chapter 4 4 46...
Страница 178: ...7K Chapter 9 9 8 Notes...
Страница 206: ...7K Chapter 12 12 12...
Страница 212: ...7K Chapter 13 13 6...
Страница 254: ...7K Chapter 18 18 12...
Страница 260: ...7K Chapter 19 19 6...
Страница 300: ...7K Chapter 21 21 32...
Страница 354: ...7K Appendix A A 54...
Страница 358: ...7K Appendix B B 4...
Страница 380: ...7K Appendix C C 22...
Страница 385: ...Parts Lists and Schematics D 5 Main Board schematic page 1 of 4 to be provided...
Страница 386: ...7K Appendix D D 6 Main Board schematic page 2 of 4 to be provided...
Страница 387: ...Parts Lists and Schematics D 7 Main Board schematic page 3 of 4 to be provided...
Страница 388: ...7K Appendix D D 8 Main Board schematic page 4 of 4 to be provided...
Страница 389: ...Parts Lists and Schematics D 9 Main Board layout to be provided...
Страница 392: ...7K Appendix D D 12 SSM schematic to be provided...
Страница 395: ...Parts Lists and Schematics D 15 TIM Schematic to be provided...
Страница 396: ...7K Appendix D D 16 TIM Board Layout to be provided...
Страница 399: ...Parts Lists and Schematics D 19 ADM Schematic to be provided...
Страница 400: ...7K Appendix D D 20 ADM Board Layout to be provided...