Pixel

SCPI Commands :

TEST:PIXel:COLor
TEST:PIXel:GRADient
TEST:PIXel:POINtsize
TEST:PIXel:RGBA
TEST:PIXel:TEXT
TEST:PIXel:WINDow
class PixelCls[source]

Pixel commands group definition. 6 total commands, 0 Subgroups, 6 group commands

get_gradient() bool[source]
# SCPI: TEST:PIXel:GRADient
value: bool = driver.test.pixel.get_gradient()

Activates the gradient for display screen test.

return

pix_test_grad_stat: 1| ON| 0| OFF

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

Sets the point size of the test text.

return

pix_test_grad_stat: integer Range: 0 to 999

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

Sets a specific RGBA color for the screen.

return

pixel_test_rgba: No help available

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

Activats the test text mode.

return

pix_test_grad_stat: 1| ON| 0| OFF

set_color(pix_test_color: RsSmbv.enums.PixelTestPredefined) None[source]
# SCPI: 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.

param pix_test_color

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

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

Activates the gradient for display screen test.

param pix_test_grad_stat

1| ON| 0| OFF

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

Sets the point size of the test text.

param pix_test_grad_stat

integer Range: 0 to 999

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

Sets a specific RGBA color for the screen.

param pixel_test_rgba

No help available

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

Activats the test text mode.

param pix_test_grad_stat

1| ON| 0| OFF

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

Activates the check display screen.

param pix_test_window

1| ON| 0| OFF