Invert

SCPI Command :

CHANnel<*>:INVert
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(channel=Channel.Default) bool[source]
# CHANnel<*>:INVert
value: bool = driver.channel.invert.get(channel = repcap.Channel.Default)

Turns the inversion of the signal amplitude on or off. To invert means to reflect the voltage values of all signal components against the ground level. If the inverted channel is the trigger source, the instrument triggers on the inverted signal.

Parameters:

channel – optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Channel’)

Returns:

invert_channel: OFF | ON

set(invert_channel: bool, channel=Channel.Default) None[source]
# CHANnel<*>:INVert
driver.channel.invert.set(invert_channel = False, channel = repcap.Channel.Default)

Turns the inversion of the signal amplitude on or off. To invert means to reflect the voltage values of all signal components against the ground level. If the inverted channel is the trigger source, the instrument triggers on the inverted signal.

Parameters:
  • invert_channel – OFF | ON

  • channel – optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Channel’)