User Guide

Appendix
123
A
xcess Programming Language
Not recommended:
PUSH[TP,25]
TO [RELAY,3] (* LIGHTS OFF *)
[TP,25]=[RELAY,3]
SYSTEM_CALL [1] 'VCR1' (VHS,TP,1,2,3,4,5,6,7,0,0)
PUSH[TP,26]
TO [RELAY,4] (* LIGHTS ON *)
[TP,26]=[RELAY,4]
Standard:
(* TRANSPORT CONTROL ***************************)
SYSTEM_CALL 'VCR1' [1] (VHS,TP,1,2,3,4,5,6,7,0,0)
(* LIGHTING CONTROL ****************************)
PUSH[TP,26]
TO [RELAY,4] (* LIGHTS ON *)
[TP,26]=[RELAY,4]
PUSH[TP,25]
TO [RELAY,3] (* LIGHTS OFF *)
[TP,25]=[RELAY,3]
22. There should be no space between a PUSH (and a RELEASE) statement and its opening
bracket. Conversely, there should always be a space for TO, MIN_TO, ON, OFF, and PULSE
statements; there should be no spaces within the brackets for any case.
Not recommended:
PUSH [TP, 25]
TO[RELAY, 3] (* LIGHTS OFF *)
[TP,25] =[RELAY, 3]
Standard:
PUSH[TP,25]
TO [LIGHTS,LIGHTS_OFF] (* LIGHTS OFF *)
[TP,25]=[RELAY,3]
23. Feedback for buttons should follow the PUSH statements with which they are associated.
Not recommended:
(* FEEDBACK SECTION ****************************)
[TP,25]=[RELAY,3]
[TP,26]=[RELAY,4]