User Guide

Table Of Contents
Program Methodology—Resident Points
Siemens Building Technologies, Inc. 1-53
Communications link (LINK)
Unitary pre-APOGEE APOGEE BACnet
Syntax
LINK
Use
This resident point indicates the condition of communications.
Depending on the status of the communications link, a point contains
the value 0 or 1.
If the LINK value is 0, the node where the LINK point resides is
not communicating with the network.
If the LINK value is 1, the node where the LINK point resides is
actively communicating with the network.
Example
300 IF (LINK.EQ.0) THEN ON(ALARM)
See also
Node Number (NODEn)
APOGEE PPCL User’s Manual
1-54 Siemens Building Technologies, Inc.
Month (MONTH)
Unitary pre-APOGEE APOGEE BACnet
Syntax
MONTH
Use
This resident point specifies the current month. The values used for
the MONTH point are as follows:
Number Month
1 January
2 February
3 March
4 April
5 May
6 June
7 July
8 August
9 September
10 October
11 November
12 December
Example
950 IF (MONTH.GE.4.AND.MONTH.LE.10) THEN
SEASON = 1 ELSE SEASON = 0