You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
313 B

#### 指令接口
POST /api/directive
```json
{"event": "beep:sound", "args": {"duration":5000, "times": 3}} # 蜂鸣器
```
POST /api/event/beep
```json
{"duration":5000, "times": 3}
```
{
"code": 200,
"desc": "成功",
"data": {}
}
{
"code": 200,
"desc": "成功",
"data": [{}, {}]
}