Pixel

SCPI Commands :

TEST:PIXel:COLor
TEST:PIXel:GRADient
TEST<HW>:PIXel:POINtsize
TEST:PIXel:RGBA
TEST:PIXel:TEXT
TEST:PIXel:WINDow
Commands in total: 6
Subgroups: 0
Direct child commands: 6
get_gradient() bool[source]
# TEST:PIXel:GRADient
value: bool = driver.test.pixel.get_gradient()

Activates the gradient for display screen test.

Returns:

pix_test_grad_stat: 1 | ON | 0| OFF

get_point_size() int[source]
# TEST<HW>:PIXel:POINtsize
value: int = driver.test.pixel.get_point_size()

Sets the point size of the test text.

Returns:

pix_test_grad_stat: integer Range: 0 to 999

get_rgba() List[int][source]
# TEST:PIXel:RGBA
value: List[int] = driver.test.pixel.get_rgba()

Sets a specific RGBA color for the screen.

get_text() bool[source]
# TEST:PIXel:TEXT
value: bool = driver.test.pixel.get_text()

Activats the test text mode.

Returns:

pix_test_grad_stat: 1 | ON | 0| OFF

set_color(pix_test_color: PixelTestPredefined) None[source]
# TEST:PIXel:COLor
driver.test.pixel.set_color(pix_test_color = enums.PixelTestPredefined.AUTO)

Selects the color of the screen. ‘AUTO’ switches from one color to the next in tme intervals of approximately 3 s per color.

Parameters:

pix_test_color – RED | BLUE | WHITe | GREen | AUTO | GR25 | GR50 | GR75 | BLACk

set_gradient(pix_test_grad_stat: bool) None[source]
# TEST:PIXel:GRADient
driver.test.pixel.set_gradient(pix_test_grad_stat = False)

Activates the gradient for display screen test.

Parameters:

pix_test_grad_stat – 1 | ON | 0| OFF

set_point_size(pix_test_grad_stat: int) None[source]
# TEST<HW>:PIXel:POINtsize
driver.test.pixel.set_point_size(pix_test_grad_stat = 1)

Sets the point size of the test text.

Parameters:

pix_test_grad_stat – integer Range: 0 to 999

set_rgba(pixel_test_rgba: List[int]) None[source]
# TEST:PIXel:RGBA
driver.test.pixel.set_rgba(pixel_test_rgba = [1, 2, 3])

Sets a specific RGBA color for the screen.

set_text(pix_test_grad_stat: bool) None[source]
# TEST:PIXel:TEXT
driver.test.pixel.set_text(pix_test_grad_stat = False)

Activats the test text mode.

Parameters:

pix_test_grad_stat – 1 | ON | 0| OFF

set_window(pix_test_window: bool) None[source]
# TEST:PIXel:WINDow
driver.test.pixel.set_window(pix_test_window = False)

Activates the check display screen.

Parameters:

pix_test_window – 1 | ON | 0| OFF