Time

SCPI Command :

DISPlay[:WINDow<n>]:TIME
class TimeCls[source]

Time commands group definition. 2 total commands, 1 Subgroups, 1 group commands

get(window=Window.Default) bool[source]
# SCPI: DISPlay[:WINDow<n>]:TIME
value: bool = driver.display.window.time.get(window = repcap.Window.Default)

This command adds or removes the date and time from the display.

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Window’)

return

state: ON | OFF | 1 | 0

set(state: bool, window=Window.Default) None[source]
# SCPI: DISPlay[:WINDow<n>]:TIME
driver.display.window.time.set(state = False, window = repcap.Window.Default)

This command adds or removes the date and time from the display.

param state

ON | OFF | 1 | 0

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Window’)

Cloning the Group

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

Subgroups