User Guide
Appendix
119
A
xcess Programming Language
Standard:
SLD_L = 96 (* AXB-SLD - LEFT PROJECTOR *)
SLD_R = 97 (* AXB-SLD - RIGHT PROJECTOR *)
FLOPPY = 127 (* AXB-FD - *)
RADIO = 128 (* AXR-RF - TXC16,RC8; TXC16,RC9 *)
RADIO2 = 129 (* AXR-RF - COMBINED *)
TP_PODIUM = 130 (* AXP-EL+ - PODIUM PANEL *)
TP_CONTROL = 131 (* AXP-EL+ - CONTROL ROOM PANEL *)
7. List all devices in numerical order in the DEFINE_DEVICE section, using descriptive names.
In a comment after the device definition, put the actual AMX model number and describe what
equipment will be connected.
Not recommended:
RELAY = 2
SONY = 1 (* IR TV *)
STANDARD
TUNER = 1 (* AXC-IR/S - SONY ST92TV *)
(* HC: RMU72, SO21.IRL *)
SCREEN = 2 (* AXC-REL8 - DRAPER SCREEN *)
8. If the device is an AXR_RF or other such receiver, place the transmitter type, radio code, and
frequency (if not 304MHZ) in the comment.
Not recommended:
RADIO1 = 128 (* ROOM 1 *)
RADIO2 = 129 (* ROOM 2 *)
STANDARD
RADIO1 = 128 (* AXR-RF; ROOM 1: TXC16,RC8; TXC16,RC9 *)
RADIO2 = 129 (* AXR-RF; ROOM 2: TXC32,RC10; TX-SK+,RC1-5 *)
9. Put the DEFINE_COMBINE section after all device definitions and before the
DEFINE_CONSTANT section.
Not recommended:
DEFINE_DEVICE
(* devices here *)
DEFINE_CONSTANT
(* constants here *)
DEFINE_VARIABLE
(* variables here *)
DEFINE_COMBINE
(* finally! *)