Display

SCPI Commands :

DISPlay:BRIGhtness
DISPlay:FOCusobject
DISPlay:MESSage
class DisplayCls[source]

Display commands group definition. 19 total commands, 7 Subgroups, 3 group commands

get_brightness() float[source]
# SCPI: DISPlay:BRIGhtness
value: float = driver.display.get_brightness()

Sets the brightness of the dispaly.

return

brightness: float Range: 1.0 to 20.0

set_brightness(brightness: float) None[source]
# SCPI: DISPlay:BRIGhtness
driver.display.set_brightness(brightness = 1.0)

Sets the brightness of the dispaly.

param brightness

float Range: 1.0 to 20.0

set_focus_object(obj_name: str) None[source]
# SCPI: DISPlay:FOCusobject
driver.display.set_focus_object(obj_name = 'abc')

No command help available

param obj_name

No help available

set_message(message: str) None[source]
# SCPI: DISPlay:MESSage
driver.display.set_message(message = 'abc')

No command help available

param message

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.display.clone()

Subgroups