7-
57
WETO
hms
(Wet Ohms)
WETO?
is used only during factory calibration, and returns the measured
resistance of the Wet Bulb in ohms. All ohms values are
returned in 8 digit scientific notation. Values should be between
440 and 690
Ω
.
IBM BASICA Example (assuming com1 is initialized to #1 and 5A-1MP
ECHO
is
OFF
):
.
.
.
100
PRINT #1, "WETO?"
'Request value.
110
INPUT #1, A$
'Read it in.
120
DRY.OHMS=VAL (A$)
'Make it numeric.
.
.
.
TERMINAL Example (assuming
ECHO
is
ON
):
WETO
hms?
Request value.
6.702
678.44999
Ω
for this example.
________________________________________________________________________
IEEE 488 Example (HP Rocky Mountain BASIC syntax):
.
.
.
200
OUTPUT 705; "WETOHMS?"
!Get value.
210
ENTER 705; R2
220
DISP R2; "ohms"
!Display Ohms.