User manual
Table Of Contents
- 1 FOREWORD
- 2 INTRODUCTION
- 3 PRINCIPLE OF OPERATION
- OPTIONS AND SPECIFICATION
- INSTALLATION REQUIREMENTS
- INSTALLATION
- 7 MECHANICAL
- 8 OUTPUT FORMATS
- 9 ANALOGUE OUTPUTS AND OPTIONS
- 10 METPAK SDI-12
- 11 MAINTENANCE & FAULT-FINDING
- 12 TESTS
- 13 APPENDICES
- CS215_jun06.pdf

CS215 Temperature and Relative Humidity Probe
;{CR10X}
;Example program for two CS215 sensors on control port 1
;Measures every minute and stores some summary statistics
;once per hour
*Table 1 Program
01: 60 Execution Interval (seconds)
;Measure the two sensors with separate commands but with the
;same port number
;Note you have to manually assign the labels first in the Inloc Editor
;to make sure two locations are free for each sensor.
1: SDI-12 Recorder (P105)
1: 0000 SDI-12 Address
2: 00 SDI-12 Command
3: 1 Port
4: 1 Loc [ CS215T1 ]
5: 1.0 Mult
6: 0.0 Offset
2: SDI-12 Recorder (P105)
1: 0001 SDI-12 Address
2: 00 SDI-12 Command
3: 1 Port
4: 3 Loc [ CS215T2 ]
5: 1.0 Mult
6: 0.0 Offset
;Now store some statistics.
3: If time is (P92)
1: 0 Minutes (Seconds --) into a
2: 60 -- Interval (same units as above)
3: 10 Set Output Flag High (Flag 0)
4: Real Time (P77)
1: 111 Day,Hour/Minute,Seconds (midnight = 0000)
5: Sample (P70)
1: 4 Reps
2: 1 Loc [ CS215T1 ]
6: Average (P71)
1: 4 Reps
2: 1 Loc [ CS215T1 ]
7: Maximum (P73)
1: 4 Reps
2: 00 Time Option
3: 1 Loc [ CS215T1 ]
8: Minimum (P74)
1: 4 Reps
2: 00 Time Option
3: 1 Loc [ CS215T1 ]
*Table 2 Program
02: 0.0000 Execution Interval (seconds)
*Table 3 Subroutines
End Program
6