Skip to content

Commit

Permalink
Fix OPC UA type definition in TM sample.
Browse files Browse the repository at this point in the history
  • Loading branch information
barnstee committed Nov 28, 2024
1 parent 45efe28 commit 1700259
Showing 1 changed file with 27 additions and 9 deletions.
36 changes: 27 additions & 9 deletions Samples/pac4200.tm.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
"VoltageL1-N": {
"type": "number",
"opcua:nodeId": "s=VoltageL-N",
"opcua:type": "nsu=http://opcfoundation.org/UA/PNEM/;i=3005",
"@type": [
"http://opcfoundation.org/UA/PNEM/;i=3005"
],
"opcua:fieldPath": "A",
"readOnly": true,
"observable": true,
Expand All @@ -46,7 +48,9 @@
"VoltageL2-N": {
"type": "number",
"opcua:nodeId": "s=VoltageL-N",
"opcua:type": "nsu=http://opcfoundation.org/UA/PNEM/;i=3005",
"@type": [
"http://opcfoundation.org/UA/PNEM/;i=3005"
],
"opcua:fieldPath": "B",
"readOnly": true,
"observable": true,
Expand All @@ -66,7 +70,9 @@
"VoltageL3-N": {
"type": "number",
"opcua:nodeId": "s=VoltageL-N",
"opcua:type": "nsu=http://opcfoundation.org/UA/PNEM/;i=3005",
"@type": [
"http://opcfoundation.org/UA/PNEM/;i=3005"
],
"opcua:fieldPath": "C",
"readOnly": true,
"observable": true,
Expand Down Expand Up @@ -137,7 +143,9 @@
"CurrentL1": {
"type": "number",
"opcua:nodeId": "s=Current",
"opcua:type": "nsu=http://opcfoundation.org/UA/PNEM/;i=3005",
"@type": [
"http://opcfoundation.org/UA/PNEM/;i=3005"
],
"opcua:fieldPath": "A",
"readOnly": true,
"observable": true,
Expand All @@ -157,7 +165,9 @@
"CurrentL2": {
"type": "number",
"opcua:nodeId": "s=Current",
"opcua:type": "nsu=http://opcfoundation.org/UA/PNEM/;i=3005",
"@type": [
"http://opcfoundation.org/UA/PNEM/;i=3005"
],
"opcua:fieldPath": "B",
"readOnly": true,
"observable": true,
Expand All @@ -177,7 +187,9 @@
"CurrentL3": {
"type": "number",
"opcua:nodeId": "s=Current",
"opcua:type": "nsu=http://opcfoundation.org/UA/PNEM/;i=3005",
"@type": [
"http://opcfoundation.org/UA/PNEM/;i=3005"
],
"opcua:fieldPath": "C",
"readOnly": true,
"observable": true,
Expand All @@ -197,7 +209,9 @@
"PowerFactorL1": {
"type": "number",
"opcua:nodeId": "s=PowerFactor",
"opcua:type": "nsu=http://opcfoundation.org/UA/PNEM/;i=3005",
"@type": [
"http://opcfoundation.org/UA/PNEM/;i=3005"
],
"opcua:fieldPath": "A",
"readOnly": true,
"observable": true,
Expand All @@ -217,7 +231,9 @@
"PowerFactorL2": {
"type": "number",
"opcua:nodeId": "s=PowerFactor",
"opcua:type": "nsu=http://opcfoundation.org/UA/PNEM/;i=3005",
"@type": [
"http://opcfoundation.org/UA/PNEM/;i=3005"
],
"opcua:fieldPath": "B",
"readOnly": true,
"observable": true,
Expand All @@ -237,7 +253,9 @@
"PowerFactorL3": {
"type": "number",
"opcua:nodeId": "s=PowerFactor",
"opcua:type": "nsu=http://opcfoundation.org/UA/PNEM/;i=3005",
"@type": [
"http://opcfoundation.org/UA/PNEM/;i=3005"
],
"opcua:fieldPath": "C",
"readOnly": true,
"observable": true,
Expand Down

0 comments on commit 1700259

Please sign in to comment.