Files
softbus_OPC/config/daemon/logical_points.json

38 lines
1.1 KiB
JSON
Raw Normal View History

2026-06-11 19:00:49 +08:00
{
"site": "DemoSite",
"system": "DemoSystem",
"asset": "DemoAsset",
"devices": [
{
2026-06-12 18:34:49 +08:00
"logicalDeviceId": "EdgeDevice_01",
"displayName": "边缘设备01",
2026-06-11 19:00:49 +08:00
"points": [
{
2026-06-12 18:34:49 +08:00
"logicalPointId": "MotorTemperature",
2026-06-11 19:00:49 +08:00
"displayName": "电机温度",
"signalType": "AI",
"unit": "℃",
"range": [0, 200],
"access": "read",
"writable": false,
"opcuaNodeId": "ns=1;s=DemoSite/DemoSystem/DemoAsset/EdgeDevice_01/MotorTemperature",
"dataTopic": "data/EdgeDevice_01/MotorTemperature"
},
{
2026-06-12 18:34:49 +08:00
"logicalPointId": "ValveOpening",
2026-06-11 19:00:49 +08:00
"displayName": "阀门开度",
"signalType": "AO",
"unit": "%",
"range": [0, 100],
"access": "read_write",
"writable": true,
"opcuaNodeId": "ns=1;s=DemoSite/DemoSystem/DemoAsset/EdgeDevice_01/ValveOpening",
"cmdTopic": "control/cmd/EdgeDevice_01/ValveOpening/set",
"ackTopic": "control/ack/EdgeDevice_01/ValveOpening",
"dataTopic": "data/EdgeDevice_01/ValveOpening"
}
]
}
]
}