-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvpe6030_demo.py
75 lines (60 loc) · 2.27 KB
/
vpe6030_demo.py
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
# vpe6030 Relay Module 4 Channel
# Demo Program Alternates Relays ON and OFF every 1 Second
import asyncio
from pywlmio import *
async def main():
init()
NodeID = 5 #NodeID location is the Bacplane ID (Jumpers) and Power Supply Slot location
kout = VPE6030(NodeID)
while True:
try:
await asyncio.gather(
kout.ch1.write(1), # write relay K1 ON
kout.ch2.write(0), # write relay K2 OFF
kout.ch3.write(1), # write relay K3 ON
kout.ch4.write(0) # write relay K4 OFF
)
a = await asyncio.gather(
kout.ch1.read(),
kout.ch2.read(),
kout.ch3.read(),
kout.ch4.read()
)
print("Module VPE6030 NodeID = %d" % NodeID)
print("Reading Array = ", a) # Array holds all input channel readings
print("Relay K1 = " , a[0])
print("Relay K2 = " , a[1])
print("Relay K3 = " , a[2])
print("Relay K4 = " , a[3])
print("")
except WlmioWrongNodeError:
print("Error NodeID = %d Wrong module installed" % NodeID) # Error Check if wrong type of module installed
except WlmioInternalError:
print("Error NodeID = %d Timed out" % NodeID) # Error Check - Typically module not installed
await asyncio.sleep(1)
try:
await asyncio.gather(
kout.ch1.write(0), # write relay K1 OFF
kout.ch2.write(1), # write relay K2 ON
kout.ch3.write(0), # write relay K3 OFF
kout.ch4.write(1) # write relay K4 ON
)
a = await asyncio.gather(
kout.ch1.read(),
kout.ch2.read(),
kout.ch3.read(),
kout.ch4.read()
)
print("Module VPE6030 NodeID = %d" % NodeID)
print("Reading Array = ", a) # Array holds all input channel readings
print("Relay K1 = " , a[0])
print("Relay K2 = " , a[1])
print("Relay K3 = " , a[2])
print("Relay K4 = " , a[3])
print("")
except WlmioWrongNodeError:
print("Error NodeID = %d Wrong module installed" % NodeID) # Error Check if wrong type of module installed
except WlmioInternalError:
print("Error NodeID = %d Timed out" % NodeID) # Error Check - Typically module not installed
await asyncio.sleep(1)
asyncio.run(main(), debug=True)