Range, Digits, Rate, and Filter 3-13
Programming example
The following program fragment configures the Filter for Channel 2 voltage (DCV2). It
disables the analog filter and enables the digital filter (5% window, count 10, moving).
‘Analog Filter:
CALL SEND(7,“:sens:volt:chan2:lpas off”,status%) ‘Disable analog filter.
‘ Digital Filter:
CALL SEND(7,“:sens:volt:chan2:dfil:wind 5”,status%) ‘Set window to 5%.
CALL SEND(7,“:sens:volt:chan2:dfil:coun 10”,status%) ‘Set count to 10.
CALL SEND(7,“:sens:volt:chan2:dfil:tcon mov”,status%) ‘Select moving
‘filter.
CALL SEND(7,“:sens:volt:chan2:dfil:stat on”,status%) ‘Enable digital
‘filter.