State

SCPI Commands

DIO:OUTPut:STATe
class StateCls[source]

State commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get(arg_0: int) bool[source]
# SCPI: DIO:OUTPut[:STATe]
value: bool = driver.dio.output.state.get(arg_0 = 1)

Sets or queries the digital output channel selection.

param arg_0

1 Channel selection for the digital output source.

return

arg_1: 1 | 0 Enables or disables the digital output state.

set(arg_0: int, arg_1: bool) None[source]
# SCPI: DIO:OUTPut[:STATe]
driver.dio.output.state.set(arg_0 = 1, arg_1 = False)

Sets or queries the digital output channel selection.

param arg_0

1 Channel selection for the digital output source.

param arg_1

1 | 0 Enables or disables the digital output state.