blinky/config.json

48 lines
1.3 KiB
JSON
Raw Normal View History

2021-04-06 16:41:49 +02:00
{
"server": {
"listen": "0.0.0.0",
2022-02-21 00:48:29 +01:00
"port": 3000
2021-04-06 16:41:49 +02:00
},
"log": {
2022-02-21 00:48:29 +01:00
"level": "debug",
"timestamp": "DD.MM.YYYY HH:mm:ss:SS"
2021-04-06 16:41:49 +02:00
},
"api": {
"get": {
"description": "show this page"
},
"post": {
"mode": {
"available": "set, morph, pulse",
"default": "set",
"description": "specifies the color change mode"
},
"color": {
"available": "random, hex color codes (#ffffff), rgb color codes (255, 255, 255)",
"default": "random",
"description": "specifies the color to change to"
},
2022-02-21 12:20:18 +01:00
"index": {
"available": "number values",
"default": "undefined",
"description": "specifies the led index"
},
2021-04-06 16:41:49 +02:00
"duration": {
"available": "number values",
"default": 1000,
"description": "specifies the duration of the color change animation in milliseconds"
},
"steps": {
"available": "number values",
"default": "[duration] / 10",
"description": "specifies the amount of steps for the color change"
},
"pulses": {
"restrictions": "pulse",
"available": "number values",
"default": "0 (infinite)",
"description": "specifies the number of pulses"
}
}
}
}