Palette

SCPI Commands :

DISPlay:COLor:PALette:ADD
DISPlay:COLor:PALette:COUNt
DISPlay:COLor:PALette:REMove
Commands in total: 8
Subgroups: 1
Direct child commands: 3
get_count() int[source]
# DISPlay:COLor:PALette:COUNt
value: int = driver.display.color.palette.get_count()

Queries the number of configured color maps.

set_add(name: str) None[source]
# DISPlay:COLor:PALette:ADD
driver.display.color.palette.set_add(name = 'abc')

Adds a new color table with the specified name.

Parameters:

name – color table

set_remove(name: str) None[source]
# DISPlay:COLor:PALette:REMove
driver.display.color.palette.set_remove(name = 'abc')

Removes the specified color table.

Parameters:

name – color table

Cloning the Group

# Create a copy of the original group, that exists independently
palette_copy = driver.display.color.palette.clone()

Subgroups