Files
gcs-nf/Plugins/Transport/plugin.json
T

27 lines
690 B
JSON
Raw Normal View History

{
"$schema": "../schemas/plugin.schema.json",
"name": "transport",
"title": "传感器传输",
"version": "2.0.0",
"author": "GCS Team",
"description": "传感器数据传输",
"minEngineVersion": "2.0.0",
"entryPoint": "TransportPlugin",
"activationEvents": [
"onStartup"
],
"contributes": {
"protocols": [
{
"id": "transport-manager",
"label": "传感器传输",
"transports": [
"serial",
"udp",
"tcp"
],
"serviceInterface": "ITransportService"
}
]
}
}