Set and Retrieve Contrast, Hue, and Saturation

555

# Set and Retrieve Contrast, Hue, and Saturation

# Set Contrast, Hue, and Saturation

Path:

/api/screenconfig

Method: PUT

Content-type: application/json; charset=utf-8

API Description: Set the contrast, hue, and saturation of the LCD via HDMI OUT.

Response

Name Type Example Description
contrast int 50 Contrast, ranging from 0 to 100.
hue int 50 Hue, ranging from 0 to 100.
saturation int 50 Saturation, ranging from 0 to 100.

Example

{
    "contrast": 10,
    "hue": 20,
    "saturation": 30
}

# Retrieve Contrast, Hue, and Saturation

Path:

/api/screenconfig.json

Method: GET

Content-type: application/json; charset=utf-8

API Description: This can be used to retrieve the contrast, hue, and saturation of the LCD via HDMI OUT. HDMI OUT

Response

Name Type Example Description
contrast int 50 Contrast, ranging from 0 to 100.
hue int 50 Hue, ranging from 0 to 100.
saturation int 50 Saturation, ranging from 0 to 100.

Example

{
    "contrast": 10,
    "hue": 20,
    "saturation": 30
}