User manual
HC2S3 Temperature and Relative Humidity Probe
14
1: 0 Minutes (Seconds --) into a
2: 60 Interval (same units as above)
3: 10 Set Output Flag High (Flag 0)
12: Set Active Storage Area (P80)
1: 1 Final Storage Area 1
2: 101 Array ID
13: Real Time (P77)
1: 1220 Year,Day,Hour/Minute (midnight = 2400)
14: Average (P71)
1: 1 Reps
2: 2 Loc [ AirTC ]
15: Sample (P70)
1: 1 Reps
2: 1 Loc [ RH ]
CR1000 program using single-ended measurements in Slow Sequence scan
HC2S3 measurements are made every 5 seconds in a Slow Sequence scan. Multiple 500 mSec delays
are used for the 3 second warm-up time, which allows the 1 second scan to occur between Delay
instructions.
'CR1000 program
Public AirTC
Public RH
Public Battery_volts, Ptemp_C
Units AirTC=Deg C
Units RH=%
DataTable(Table1,True,-1)
DataInterval(0,60,Min,10)
Average (1,Battery_volts,FP2,False)
Average (1,Ptemp_C,FP2,False)
Average(1,AirTC,FP2,False)
Sample(1,RH,FP2)
EndTable
BeginProg
Scan(1,Sec,1,0) 'measurements to be made every 1 second
Battery (Battery_volts)
PanelTemp (Ptemp_C,250)
'add additional instructions to be executed every 1 second
CallTable(Table1)
NextScan