Ainput

SCPI Commands

CALibration:AINPut:SAVE
CALibration:AINPut:DATA
CALibration:AINPut:DATE
CALibration:AINPut:COUNt
class AinputCls[source]

Ainput commands group definition. 9 total commands, 5 Subgroups, 4 group commands

get_count() int[source]
# SCPI: CALibration:AINPut:COUNt
value: int = driver.calibration.ainput.get_count()

Queries the number of counts performed for analog input adjustment .

return

result: No help available

get_data() float[source]
# SCPI: CALibration:AINPut:DATA
value: float = driver.calibration.ainput.get_data()

Sets the analog input adjustment data.

return

arg_0: No help available

get_date() str[source]
# SCPI: CALibration:AINPut:DATE
value: str = driver.calibration.ainput.get_date()

Returns the analog input adjustment date (‘DD-MM-YY’) .

return

result: No help available

save() None[source]
# SCPI: CALibration:AINPut:SAVE
driver.calibration.ainput.save()

Saves the analog input adjustment.

save_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: CALibration:AINPut:SAVE
driver.calibration.ainput.save_with_opc()

Saves the analog input adjustment.

Same as save, but waits for the operation to complete before continuing further. Use the RsNgx.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms

Maximum time to wait in milliseconds, valid only for this call.

set_data(arg_0: float) None[source]
# SCPI: CALibration:AINPut:DATA
driver.calibration.ainput.set_data(arg_0 = 1.0)

Sets the analog input adjustment data.

param arg_0

Measured value from DMM.

Subgroups