Condition

SCPI Commands :

[SOURce<HW>]:AREGenerator:CHANnel:CONDition:INFO
[SOURce<HW>]:AREGenerator:CHANnel:CONDition
class ConditionCls[source]

Condition commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_info() str[source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:CONDition:INFO
value: str = driver.source.areGenerator.channel.condition.get_info()

Displays a status message for the input power for the related radar channel.

return:

areg_pow_led_info: No help available

get_value() AregPlEd[source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:CONDition
value: enums.AregPlEd = driver.source.areGenerator.channel.condition.get_value()

Displays the status of the power LED for the related radar channel.

return:

areg_pow_led_statu: - INACtive: The channel is inactive. The power LED lights grey. - WARNing: Displays a warning for the channel. The power LED lights yellow. - ERRor: Displays an error for the channel. The power LED lights red. - OK: The channel is active and works properly. The power LED lights green.

set_info(areg_pow_led_info: str) None[source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:CONDition:INFO
driver.source.areGenerator.channel.condition.set_info(areg_pow_led_info = 'abc')

Displays a status message for the input power for the related radar channel.

param areg_pow_led_info:

No help available

set_value(areg_pow_led_statu: AregPlEd) None[source]
# SCPI: [SOURce<HW>]:AREGenerator:CHANnel:CONDition
driver.source.areGenerator.channel.condition.set_value(areg_pow_led_statu = enums.AregPlEd.ERRor)

Displays the status of the power LED for the related radar channel.

param areg_pow_led_statu:
  • INACtive: The channel is inactive. The power LED lights grey.

  • WARNing: Displays a warning for the channel. The power LED lights yellow.

  • ERRor: Displays an error for the channel. The power LED lights red.

  • OK: The channel is active and works properly. The power LED lights green.