Get Player Configuration
# Get Player Configuration
Path:
/api/boardconfig.json
Method: GET
Content-type: application/json; charset=utf-8
API Description: This can be used to get the configuration information of the player.
Response
Name | Type | Example | Description | Enum |
---|---|---|---|---|
rotationSupport | int | 1 | Support rotation or not | 1: Support, 0: Not support |
dualWifiSupport | int | 1 | Support dual Wi-Fi (enable Wi-Fi and hotspot at the same time) or not | 1: Support, 0: Not support |
cpuColorControlSupport | int | 1 | Support Better Grayscale at Low Brightness or not | 1: Support, 0: Not support |
bootTime | int | 20 | Boot count | None |
dimensionLimit | DimensionLimit | See the sheet of the dimensionLimit description below. | Resolution limit | None |
saturationSupport | int | 0 | Support adjusting saturation or not | 1: Support, 0: Not support |
contrastSupport | int | 0 | Support adjusting contrast or not | 1: Support, 0: Not support |
hueSupport | int | 0 | Support adjusting hue or not | 1: Support, 0: Not support |
wifiDriver | String | "eagle_sdio" | Wi-Fi driver | None |
Wifi5GBandSupport | int | 1 | Support 5G Wi-Fi or not | 1: Support, 0: Not support |
Note: 1.69.9 Added the field "wifiDriver". 1.70.2 (Not include) Added the field "Wifi5GBandSupport".
dimensionLimit Type
Name | Type | Example | Description |
---|---|---|---|
maxHeight | int | 655360 | Maximum display area |
maxHeight | int | 3840 | Maximum display height |
maxWidth | int | 4096 | Maximum display length |
minArea | int | 4096 | Minimum display area |
minHeight | int | 64 | Minimum display height |
minWidth | int | 64 | Minimum display length |
Example
{
"code": 200,
"data": {
"Wifi5GBandSupport": 1,
"bootTime": 20,
"contrastSupport": 1,
"cpuColorControlSupport": 1,
"dimensionLimit": {
"maxArea": 2304000,
"maxHeight": 2560,
"maxWidth": 4096,
"minArea": 4096,
"minHeight": 64,
"minWidth": 64
},
"dualWifiSupport": 1,
"hueSupport": 1,
"rotationSupport": 1,
"saturationSupport": 1,
"wifiDriver": "rtl88x2cs"
},
"msg": "200 success"
}