I started playing with the Json server yesterday with a view to use it to remote control Hyperion.
https://docs.hyperion-project.org/en/json/
Is the Json Server complete and working? I'm getting unexpected results:
Code
{
"command": "color",
"color": [
0,
255,
255
],
"duration": 12000,
"priority": 20,
"origin": "My Fancy App"
}
returns:
{
"command": "color",
"success": true,
"tan": 0
}
but no color is set. Nothing appears to happen.
Display More
Code
{
"command" : "authorize",
"subcommand" : "tokenRequired"
}
returns:
{
"command": "",
"error": "Command not implemented",
"success": false,
"tan": 0
}
Display More