Files
softbus_OPC/config/daemon/logical_points.json

71 lines
2.3 KiB
JSON
Raw Permalink 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 21:23:21 +08:00
{
"logicalPointId": "MotorSpeed",
"displayName": "电机转速",
"signalType": "AI",
"unit": "rpm",
"range": [0, 1000],
"access": "read",
"writable": false,
"opcuaNodeId": "ns=1;s=DemoSite/DemoSystem/DemoAsset/EdgeDevice_01/MotorSpeed",
"dataTopic": "data/EdgeDevice_01/MotorSpeed"
},
{
"logicalPointId": "MotorCurrent",
"displayName": "电机电流",
"signalType": "AI",
"unit": "A",
"range": [0, 100],
"access": "read",
"writable": false,
"opcuaNodeId": "ns=1;s=DemoSite/DemoSystem/DemoAsset/EdgeDevice_01/MotorCurrent",
"dataTopic": "data/EdgeDevice_01/MotorCurrent"
},
{
"logicalPointId": "MotorVoltage",
"displayName": "电机电压",
"signalType": "AI",
"unit": "V",
"range": [0, 100],
"access": "read",
"writable": false,
"opcuaNodeId": "ns=1;s=DemoSite/DemoSystem/DemoAsset/EdgeDevice_01/MotorVoltage",
"dataTopic": "data/EdgeDevice_01/MotorVoltage"
},
2026-06-11 19:00:49 +08:00
{
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"
}
]
}
]
}