Skip to content

Room correction

Get and set room correction settings


Get the current room correction settings

GET
/RoomCorrGet

Makes a call to https://10.10.10.254/httpapi.asp?command=RoomCorrGet

It returns a JSON object with the current room correction settings, including the EQ levels for each band, the source name, and other related information.
The "EQBand" array contains objects for each EQ band, with parameters such as "mode", "freq", "q", and "gain".
This information can be used to understand the current room correction configuration and make informed adjustments if needed.

Responses

Successful response

application/json
JSON
{
  
"status": "string",
  
"EQLevel": 0,
  
"source_name": "string",
  
"EQStat": "string",
  
"Name": "string",
  
"pluginURI": "string",
  
"channelMode": "string",
  
"EQBand": [
  
  
{
  
  
  
"index": 0,
  
  
  
"param_name": "string",
  
  
  
"value": 0
  
  
}
  
]
}

Playground

Samples


Get the current room correction mode

GET
/RoomCorrGetMode

Makes a call to https://10.10.10.254/httpapi.asp?command=RoomCorrGetMode

Same as RoomCorrGet?

Responses

Successful response

Playground

Samples


Set the room correction settings

GET
/RoomCorrSet:{str}

Makes a call to https://10.10.10.254/httpapi.asp?command=RoomCorrSet:{str}

Parameters

Path Parameters

str*

Unknown

Type
string
Required

Responses

Successful response

Playground

Variables
Key
Value

Samples


Set the room correction settings for left and right channels

GET
/RoomCorrSetLR:{str}

Makes a call to https://10.10.10.254/httpapi.asp?command=RoomCorrSetLR:{str}

Same as RoomCorrSet?

Parameters

Path Parameters

str*

Unknown

Type
string
Required

Responses

Successful response

Playground

Variables
Key
Value

Samples


Set the room correction mode

GET
/RoomCorrSetMode:%7B%22Mode%22:%22{str}%22%7D

...

Parameters

Path Parameters

str*

Unknown

Type
string
Required

Responses

Successful response

Playground

Variables
Key
Value

Samples


Set the room correction settings with version and time parameters

GET
/setRoomCorrection:%7B%22RC_Version%22:%22{str}%22,%22Time%22:%22{time}%22%7D

...

Parameters

Path Parameters

str*

Unknown

Type
string
Required
time*

Format yyyy:MM:dd HH:mm

Type
string
Required

Responses

Successful response

Playground

Variables
Key
Value

Samples


Powered by VitePress OpenAPI