-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchannel_AMK.py
More file actions
79 lines (41 loc) · 1.34 KB
/
channel_AMK.py
File metadata and controls
79 lines (41 loc) · 1.34 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
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
import constants as c
from canString import can2A
class AMK(can2A):
def __init__(self, msgType):
super().__init__(500000, False, False, msgType)
class AMKSetPoints1Inverter0(AMK):
def __init__(self):
super().__init__(c.amkSP1I0)
class AMKSetPoints1Inverter1(AMK):
def __init__(self):
super().__init__(c.amkSP1I1)
class AMKSetPoints1Inverter2(AMK):
def __init__(self):
super().__init__(c.amkSP1I2)
class AMKSetPoints1Inverter3(AMK):
def __init__(self):
super().__init__(c.amkSP1I3)
class AMKActualValues1Inverter0(AMK):
def __init__(self):
super().__init__(c.amkAV1I0)
class AMKActualValues2Inverter0(AMK):
def __init__(self):
super().__init__(c.amkAV2I0)
class AMKActualValues1Inverter1(AMK):
def __init__(self):
super().__init__(c.amkAV1I1)
class AMKActualValues2Inverter1(AMK):
def __init__(self):
super().__init__(c.amkAV2I1)
class AMKActualValues1Inverter2(AMK):
def __init__(self):
super().__init__(c.amkAV1I2)
class AMKActualValues2Inverter2(AMK):
def __init__(self):
super().__init__(c.amkAV2I2)
class AMKActualValues1Inverter3(AMK):
def __init__(self):
super().__init__(c.amkAV1I3)
class AMKActualValues2Inverter3(AMK):
def __init__(self):
super().__init__(c.amkAV2I3)