140.psdk

Event

psdk-ui资源包上传结果上报

Topic: thing/product/{gateway_sn}/events

Direction: up

Method: psdk_ui_resource_upload_result

Data:

Column
Name
Type
constraint
Description

psdk_index

psdk 负载设备索引

int

{"max":3,"min":0,"step":1}

object_key

oss 对象

text

size

文件大小

int

{"unit_name":"字节 / B"}

result

错误码

int

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"object_key": "f4a4a171-bb33-45d6-bd3d-b10034f66734/1581F5BLD22BE00A090U_2023_07_21_11_48_33_widget",
		"psdk_index": 2,
		"result": 0,
		"size": 43488
	},
	"gateway": "4TADKAQ000002J",
	"method": "psdk_ui_resource_upload_result",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689911315621
}

psdk-浮窗文本推送

Topic: thing/product/{gateway_sn}/events

Direction: up

Method: psdk_floating_window_text

Data:

Column
Name
Type
constraint
Description

psdk_index

psdk 负载设备索引

int

{"max":3,"min":0,"step":1}

value

浮窗内容

text

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"psdk_index": 2,
		"value": "System time : 1193683 ms"
	},
	"gateway": "4TADKAQ000002J",
	"method": "psdk_floating_window_text",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689911744380
}

喊话器-音频播放进度通知

Topic: thing/product/{gateway_sn}/events

Direction: up

Method: speaker_audio_play_start_progress

Data:

Column
Name
Type
constraint
Description

result

返回码

int

output

输出

struct

»psdk_index

psdk 负载设备索引

int

{"min":0}

»status

当前所处阶段

enum_string

{"in_progress":"处理中","ok":"播放成功"}

»md5

文件内容的md5校验和, 用作机场唯一标识

text

»progress

进度

struct

»»percent

进度百分比

int

{"max":"100","min":"0","step":"1","unit_name":"百分比 / %"}

»»step_key

当前步骤

enum_string

{"change_work_mode":"切换工作模式","download":"从云端下载音频文件到机场","encoding":"编码pcm为opus","play":"开始播放","upload":"机场上传音频到psdk"}

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"output": {
			"md5": "e0ecd29bb44d9e08107aaccecdc6cae2",
			"progress": {
				"percent": 89,
				"step_key": "upload"
			},
			"psdk_index": 2,
			"status": "in_progress"
		},
		"result": 0
	},
	"gateway": "4TADKAQ000002J",
	"method": "speaker_audio_play_start_progress",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689868551258
}

喊话器-tts播放进度通知

Topic: thing/product/{gateway_sn}/events

Direction: up

Method: speaker_tts_play_start_progress

Data:

Column
Name
Type
constraint
Description

result

返回码

int

output

输出

struct

»psdk_index

psdk 负载设备索引

int

{"min":0}

»status

当前所处阶段

enum_string

{"in_progress":"处理中","ok":"播放成功"}

»md5

文件内容的md5校验和, 用作机场唯一标识

text

»progress

进度

struct

»»percent

进度百分比

int

{"max":"100","min":"0","step":"1","unit_name":"百分比 / %"}

»»step_key

当前步骤

enum_string

{"change_work_mode":"切换工作模式","play":"开始播放","upload":"机场上传音频到psdk"}

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"output": {
			"md5": "bacee8ed225fa346f6da87f67c914728",
			"progress": {
				"percent": 100,
				"step_key": "play"
			},
			"psdk_index": 2,
			"status": "success"
		},
		"result": 0
	},
	"gateway": "4TADKAQ000002J",
	"method": "speaker_tts_play_start_progress",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689911352309
}

Service

psdk-设置控件值

Topic: thing/product/{gateway_sn}/services

Direction: down

Method: psdk_widget_value_set

Data:

Column
Name
Type
constraint
Description

psdk_index

psdk 负载设备索引

int

{"min":0}

index

控件编号

int

{"min":0,"step":1}

value

控件值

int

{}

开关、进度等控件值由开发者自行定义

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"index": 1,
		"psdk_index": 2,
		"value": 60
	},
	"method": "psdk_widget_value_set",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689740550047
}

Topic: thing/product/{gateway_sn}/services_reply

Direction: up

Method: psdk_widget_value_set

Data:

Column
Name
Type
constraint
Description

result

返回码

int

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"data": {
		"result": 0
	},
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"timestamp": 1654070968655,
	"method": "psdk_widget_value_set"
}

psdk-发送文本框内容

Topic: thing/product/{gateway_sn}/services

Direction: down

Method: psdk_input_box_text_set

Data:

Column
Name
Type
constraint
Description

psdk_index

psdk 负载设备索引

int

{"min":0}

value

文本内容

text

{"length":128,"unit_name":"字节 / B"}

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"psdk_index": 2,
		"value": "hello world"
	},
	"method": "psdk_input_box_text_set",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689740550047
}

Topic: thing/product/{gateway_sn}/services_reply

Direction: up

Method: psdk_input_box_text_set

Data:

Column
Name
Type
constraint
Description

result

返回码

int

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"data": {
		"result": 0
	},
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"timestamp": 1654070968655,
	"method": "psdk_input_box_text_set"
}

喊话器-开始播放音频

Topic: thing/product/{gateway_sn}/services

Direction: down

Method: speaker_audio_play_start

Data:

Column
Name
Type
constraint
Description

psdk_index

psdk 负载设备索引

int

{"min":0}

file

音频文件

struct

»name

文件名

text

{}

»url

文件下载链接

text

{}

»md5

音频文件的md5校验和, 用作机场唯一标识

text

»format

喊话器输入文件格式

enum_string

{"pcm":"pcm 格式"}

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"file": {
			"format": "pcm",
			"md5": "b38257017001f45ec064b5157b2e4416",
			"name": "20230720162718",
			"url": "https://example.com/5a6f9d4b-2a38-4b4b-86f9-3a678da0bf4a/3dd27366-bf21-41a7-9f07-62b74f2e93a7/fe2f2474-720a-4122-a552-010e1ed08920/20230720162718.webm.pcm"
		},
		"psdk_index": 2
	},
	"method": "speaker_audio_play_start",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689912303287
}

Topic: thing/product/{gateway_sn}/services_reply

Direction: up

Method: speaker_audio_play_start

Data:

Column
Name
Type
constraint
Description

result

返回码

int

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"data": {
		"result": 0
	},
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"timestamp": 1654070968655,
	"method": "speaker_audio_play_start"
}

喊话器-开始播放TTS文本

Topic: thing/product/{gateway_sn}/services

Direction: down

Method: speaker_tts_play_start

Data:

Column
Name
Type
constraint
Description

psdk_index

psdk 负载设备索引

int

{"min":0}

tts

tts 文本

struct

»name

文件名

text

{}

»text

文本内容

text

{}

»md5

文件内容的md5校验和, 用作机场唯一标识

text

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"psdk_index": 2,
		"tts": {
			"md5": "0bfb9bceee974f41a6ddfd81521bd795",
			"name": "1111",
			"text": "1111"
		}
	},
	"method": "speaker_tts_play_start",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689860575397
}

Topic: thing/product/{gateway_sn}/services_reply

Direction: up

Method: speaker_tts_play_start

Data:

Column
Name
Type
constraint
Description

result

返回码

int

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"data": {
		"result": 0
	},
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"timestamp": 1654070968655,
	"method": "speaker_tts_play_start"
}

喊话器-重新播放

Topic: thing/product/{gateway_sn}/services

Direction: down

Method: speaker_replay

Data:

Column
Name
Type
constraint
Description

psdk_index

psdk 负载设备索引

int

{"min":0}

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"psdk_index": 2
	},
	"method": "speaker_replay",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689748764875
}

Topic: thing/product/{gateway_sn}/services_reply

Direction: up

Method: speaker_replay

Data:

Column
Name
Type
constraint
Description

result

返回码

int

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"data": {
		"result": 0
	},
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"timestamp": 1654070968655,
	"method": "speaker_replay"
}

喊话器-停止播放

Topic: thing/product/{gateway_sn}/services

Direction: down

Method: speaker_play_stop

Data:

Column
Name
Type
constraint
Description

psdk_index

psdk 负载设备索引

int

{"min":0}

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"psdk_index": 2
	},
	"method": "speaker_play_stop",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689748815503
}

Topic: thing/product/{gateway_sn}/services_reply

Direction: up

Method: speaker_play_stop

Data:

Column
Name
Type
constraint
Description

result

返回码

int

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"data": {
		"result": 0
	},
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"timestamp": 1654070968655,
	"method": "speaker_play_stop"
}

喊话器-设置播放模式

Topic: thing/product/{gateway_sn}/services

Direction: down

Method: speaker_play_mode_set

Data:

Column
Name
Type
constraint
Description

psdk_index

psdk 负载设备索引

int

{"max":3,"min":0,"step":1}

play_mode

喊话器播放模式

enum_int

{"0":"单次播放","1":"循环播放(单曲)"}

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"play_mode": 1,
		"psdk_index": 2
	},
	"method": "speaker_play_mode_set",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689842974113
}

Topic: thing/product/{gateway_sn}/services_reply

Direction: up

Method: speaker_play_mode_set

Data:

Column
Name
Type
constraint
Description

result

返回码

int

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"data": {
		"result": 0
	},
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"timestamp": 1654070968655,
	"method": "speaker_play_mode_set"
}

喊话器-设置音量

Topic: thing/product/{gateway_sn}/services

Direction: down

Method: speaker_play_volume_set

Data:

Column
Name
Type
constraint
Description

psdk_index

psdk 负载设备索引

int

{"max":3,"min":0,"step":1}

play_volume

喊话器音量

int

{"max":100,"min":0,"step":1}

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"play_volume": 13,
		"psdk_index": 2
	},
	"method": "speaker_play_volume_set",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689842989237
}

Topic: thing/product/{gateway_sn}/services_reply

Direction: up

Method: speaker_play_volume_set

Data:

Column
Name
Type
constraint
Description

result

返回码

int

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"data": {
		"result": 0
	},
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
	"timestamp": 1654070968655,
	"method": "speaker_play_volume_set"
}

Requests

获取上传临时凭证

Topic: thing/product/{gateway_sn}/requests

Direction: up

Method: storage_config_get

Data:

Column
Name
Type
constraint
Description

module

模块枚举值

enum_int

{"0":"媒体","1":"psdk ui 资源"}

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"module": 1
	},
	"gateway": "4TADKAQ000002J",
	"method": "storage_config_get",
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1689911314560
}

Topic: thing/product/{gateway_sn}/requests_reply

Direction: down

Method: storage_config_get

Data:

Column
Name
Type
constraint
Description

bucket

对象存储桶名称

text

credentials

凭证信息

struct

»access_key_id

访问密钥 ID

text

»access_key_secret

秘密访问密钥

text

»expire

访问密钥过期时间

int

{"step":"1","unit_name":"秒 / s"}

»security_token

会话凭证

text

endpoint

对外服务的访问域名

text

provider

云厂商枚举值

enum_string

{"ali":"阿里云","aws":"亚马逊云","minio":"minio"}

region

数据中心所在的地域

text

object_key_prefix

对象存储桶的 Key 的前缀

text

Example:

{
	"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"data": {
		"output": {
			"bucket": "bucket_name",
			"credentials": {
				"access_key_id": "access_key_id",
				"access_key_secret": "access_key_secret",
				"expire": 3600,
				"security_token": "security_token"
			},
			"endpoint": "https://oss-cn-hangzhou.aliyuncs.com",
			"object_key_prefix": "b4cfaae6-bd9d-4cd0-8472-63b608c3c581",
			"provider": "ali",
			"region": "hz"
		},
		"result": 0
	},
	"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
	"timestamp": 1654070968655,
	"method": "storage_config_get"
}

Last updated