-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemoScene.js
executable file
·109 lines (101 loc) · 2.36 KB
/
demoScene.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/**
* @name Чтение и запись регистров modbus
* @desc
* @version 4
*/
/*
Для чтения и записи используется массив data, содержащий одну или несколько структур:
Для чтения:
{
unitid: 1, // UnitID устройства
fcr: 3, // код функции
address: 16386, // адрес для чтения
length: 2, // количество слов
offset: 0, // смещение
vartype: 'uint32sw' // тип переменной
}
Для записи:
{
unitid: 1, // UnitID устройства
address: 16386, // адрес для чтения
length: 2, // количество слов
offset: 0, // смещение
vartype: 'uint32sw', // тип переменной
value: 5 // записываемое значение
}
*/
script({
read(plugin, data, callback) {
this.pluginCommand({
unit: plugin,
command: 'read',
data: data
}, callback);
},
write(plugin, data, callback) {
this.pluginCommand({
unit: plugin,
command: 'write',
data: data
}, callback);
},
terminate() {
this.exit();
},
getReadResult(arg) {
this.log(JSON.stringify(arg, null, 4));
},
start(arg) {
this.addTimer('T1');
this.startTimer('T1', 5, 'terminate');
this.read('modbus1',
[
{
unitid: 1,
fcr: 3,
address: 16386,
length: 2,
offset: 0,
vartype: 'uint32sw',
},
{
unitid: 1,
fcr: 3,
address: 16388,
length: 2,
offset: 0,
vartype: 'uint32sw',
},
{
unitid: 1,
fcr: 3,
address: 16390,
length: 2,
offset: 0,
vartype: 'uint32sw',
},
{
unitid: 1,
fcr: 3,
address: 16392,
length: 1,
offset: 0,
vartype: 'int16be',
}
],
'getReadResult'
);
this.write('modbus1',
[
{
unitid: 1,
address: 16392,
length: 1,
offset: 0,
vartype: 'int16be',
value: 5
}
]
);
}
});