openatc-components 0.4.46 → 0.4.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/utils/faultcode.js
CHANGED
|
@@ -26,7 +26,15 @@ let faultCodeMap = new Map([
|
|
|
26
26
|
[402, 'I/O板脱机'],
|
|
27
27
|
[501, '故障板脱机'],
|
|
28
28
|
[601, '特征参数故障'],
|
|
29
|
-
[602, '设备参数异常']
|
|
29
|
+
[602, '设备参数异常'],
|
|
30
|
+
[603, '系统处理异常'],
|
|
31
|
+
[604, '系统存储异常'],
|
|
32
|
+
[701, '机柜前门打开'],
|
|
33
|
+
[702, '机柜后门打开'],
|
|
34
|
+
[901, '离线'],
|
|
35
|
+
[902, '黄闪'],
|
|
36
|
+
[903, '全红'],
|
|
37
|
+
[904, '关灯']
|
|
30
38
|
])
|
|
31
39
|
|
|
32
40
|
let faultCodeMapEn = new Map([
|
|
@@ -57,7 +65,15 @@ let faultCodeMapEn = new Map([
|
|
|
57
65
|
[402, 'I/O Board Offline'],
|
|
58
66
|
[501, 'Fault Det Board'],
|
|
59
67
|
[601, 'Fault TZParam'],
|
|
60
|
-
[602, 'Fault HWParam']
|
|
68
|
+
[602, 'Fault HWParam'],
|
|
69
|
+
[603, 'System processing exception'],
|
|
70
|
+
[604, 'System storage exception'],
|
|
71
|
+
[701, 'The front door of the cabinet is open'],
|
|
72
|
+
[702, 'The back door of the cabinet is open'],
|
|
73
|
+
[901, 'Offline'],
|
|
74
|
+
[902, 'Yellow Flash'],
|
|
75
|
+
[903, 'All Red'],
|
|
76
|
+
[904, 'Dark Control']
|
|
61
77
|
])
|
|
62
78
|
|
|
63
79
|
const TZParamSubtypeMap = new Map([
|