2000-OSM, F1 10-47
Sleep
Description: Stops program execution for a specific amount of time.
Syntax: SLEEP(tick%)
Comments: tick% is the amount of time to wait, where each tick represents 1/32 of a
second.
Example: 0100 SLEEP(20)
Temperature
Description: Returns the temperature of a zone of the Five Zone Temperature Controller.
Syntax: temp = TEMPS(zone)
Comment: zone is zone 1 through 5 of the controller
temp is the floating point temperature of the zone
Example: 0100 IF TEMPS(1) > 280.0 THEN
0200 : STOP(0)
Aborts the analysis if the temperature gets too high.