Skip to content

Get easing configuration

Name Route Method Query Parameters
Retrieve Easing Configuration /api/v0/dial/{DIAL_UID}/easing/get GET key

Dial behaviour

For each dial multiple parameters can be configured:

  • How often does the dial indicator change value and what is the maximum step it can make for that period.
  • How often does the dial backlight change and what is the maximum allowed backlight change for that period.

These parameters can be configured using set dial easing and set backlight easing respectively.

All of these parameters define the dial behaviour or how does the dial "look and feel".

It is possible to query the dial to retrieve current configuration of these parameters. This can be used to verify that requested values have been applied or to inspect what is the current dial behaviour.
Also this information and more is available through dial status API call.

Example usage

If we want to inspect what is the current easing configuration of dial with UID 3E0075000650564139323920 we would send the following HTTP request :

GET - http://localhost:5340/api/v0/dial/3E0075000650564139323920/status?key=...

Response is a JSON object

{
    "status": "ok",
    "message": "not supported yet",
    "data": null
}