Megohmmeter
Model 24508
Page 31
Technical data
General informa
-
tion
Pr
eparations for
use
Contr
ols and con
-
nections
Manual operation
of the unit
Contr
olling the
unit r
emotely
Maintenance and customer service
Contr
olling the
unit r
emotely
‘Threshold = Sxxxx,yy; (Grenzwert)
‘ xxxx = Instruction Grenzwert
‘ , = Separator zwischen Wert und Exponent
‘ yy = Exponent
‘ ; = Parameter separator oder CHR$(13) = CR
Grenzwert$ = „S10,09;“: ‘Default Grenzwert 10E09 = 10 G ;sepa-
rator
‘Achtung: Grenzwertfunktionen sind nur in den Widerstandsbereichen ak-
tivierbar
INPUT ; „ Grenzwert$ z.B. 10E09 oder <Enter>, X=Ende“; Komparator$:
‘Tastatureingabe?
IF Komparator$ = „x“ OR Komparator$ = „X“ THEN GOTO Ende2: ‘ Pro-
grammende
IF Komparator$ = „“ THEN
GOTO defaultGW ‘Kein Zeichen
ELSE
Grenzwert$ = „S“ + LEFT$(Komparator$, 2) + „,“ + RIGHT$(Komparator$,
2) + „;“
END IF
IF VAL(Komparator$) < 100 THEN Grenzwert$ = „S10,09;“: ‘ Test kleiner
100 Ohm
IF VAL(Komparator$) > 1E+16 THEN Grenzwert$ = „S10,09;“: ‘ Test groess-
er 10 Teraohm
defaultGW: ‘ keine Eingabe erfolgt
PRINT
‘*********** Messspannungs-Eingabe oder Vorgabewert = 100V
‘Voltage = Uxx; or Ux; or Ux(x) + CHR$(13)(wenn letztes Parameter)
‘ xx = 1 = Um=45V
‘ xx = 2 = Um=100V
‘ xx = 3 = Um=250V
‘ xx = 4 = Um=500V
Voltage$ = „U02;“: ‘Default = 100V und Parameter separator; oder
CHR$(13)
INPUT ; „ Messspannung 1=45V, 2=100V, 3=250V, 4=500V oder <Enter> „;
messspannung$:
SELECT CASE messspannung$
CASE „1“
Voltage$ = „U01;“:
CASE „2“
Voltage$ = „U02;“:
CASE „3“
Voltage$ = „U03;“:
CASE „4“
Voltage$ = „U04;“:
END SELECT
PRINT