Res

SCPI Commands :

TEST:RES:COLor
TEST:RES:TEXT
TEST:RES:WIND
Commands in total: 3
Subgroups: 0
Direct child commands: 3
get_color() Colour[source]
# TEST:RES:COLor
value: enums.Colour = driver.test.res.get_color()

No help available

get_text() str[source]
# TEST:RES:TEXT
value: str = driver.test.res.get_text()

No help available

get_wind() bool[source]
# TEST:RES:WIND
value: bool = driver.test.res.get_wind()

No help available

set_color(color: Colour) None[source]
# TEST:RES:COLor
driver.test.res.set_color(color = enums.Colour.GREen)

No help available

set_text(text: str) None[source]
# TEST:RES:TEXT
driver.test.res.set_text(text = 'abc')

No help available

set_wind(state: bool) None[source]
# TEST:RES:WIND
driver.test.res.set_wind(state = False)

No help available