-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopcodes.go
More file actions
47 lines (44 loc) · 1.47 KB
/
Copy pathopcodes.go
File metadata and controls
47 lines (44 loc) · 1.47 KB
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
package roc
const (
GeneralUpdate byte = 0
SendTestData byte = 2 // ROC300-Series and FloBoss 407 ONLY
SendConfiguration byte = 6
SendTimeAndDate byte = 7
SetTimeAndDate byte = 8
SendConfigurableOpcode byte = 10
SetConfigurableOpcode byte = 11
SetOperatorID byte = 17
LogsEvent byte = 18
RESERVED_19 byte = 19
StoreAndForward byte = 24
RESERVED_80 byte = 80
Plus_ReadUserPointInfo byte = 100
SetSystemVariables byte = 102
SendSystemInfo byte = 103
SendHistoryPointDef byte = 105
SendHistory byte = 107
SendEventPointers byte = 120
SendAlarms byte = 121
SendEvents byte = 122
ReadUserTemplate byte = 123
// History opcodes
SendLastHour byte = 126
SendArchivedHistoryFromDate byte = 128
SendArchivedHistoryFromPointer byte = 130
Canada_SendEventSequence byte = 131 // Canada only
Canada_ClearEventSequence byte = 132 // Canada only
Canada_SendWritableEvents byte = 133 // Canada only
SendMultipleHistoryPoints byte = 136
// ... I'm lazy and don't feel like listing and naming everything right now
SentSingleParameter byte = 162
// ...
SetContiguousParameters byte = 166
SendContiguousParameters byte = 167
// ...
SendSpecifiedParameters byte = 180
SetSpecifiedParameters byte = 181
// ...
SendRBX byte = 224
AckRBX byte = 225
ErrorResponse byte = 255
)