SCPI.SENSe(Ch).AVERage.STATe

Object type

Property (Read-Write)

Syntax

SCPI.SENSe(Ch).AVERage.STATe = Status

Status = SCPI.SENSe(Ch).AVERage.STATe

Description

This command sets/gets the averaging function of the selected channel (Ch).

Variable

Parameter

Status

Description

ON/OFF of the averaging function

Data type

Boolean type (Boolean)

Range

Select from the following:

  • True or ON(1): Turns ON

  • False or OFF(0): Turns OFF

Preset value

False or OFF

Examples

Dim Avg As Boolean
SCPI.SENSe(1).AVERage.STATe = True
Avg = SCPI.SENSe(1).AVERage.STATe

Related objects

SCPI.SENSe(Ch).AVERage.COUNt

SCPI.SENSe(Ch).AVERage.CLEar

Equivalent key

Avg > Averaging

Equivalent SCPI command

Syntax

:SENSe{[1]-4}:AVERage[:STATe] {ON|OFF|1|0}

:SENSe{[1]-4}:AVERage[:STATe]?

Query response

{1|0}<newline><^END>

Example of use

10 OUTPUT 717;":SENS1:AVER ON"
20 OUTPUT 717;":SENS1:AVER?"
30 ENTER 717;A