-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__init__.py
222 lines (192 loc) · 7.79 KB
/
__init__.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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# -*- coding: utf-8 -*-
import os, sys, getopt, struct
from subprocess import Popen, PIPE, call
from struct import *
from modules import cbpi, app
from modules.core.hardware import SensorPassive, SensorActive
import json
import re, threading, time
from flask import Blueprint, render_template, request
from modules.core.props import Property
from modules.core.hardware import ActorBase
try:
from contextlib import contextmanager
except Exception as e:
cbpi.notify("Initialize BrewPiSSR failed", "Please make sure to run: sudo apt-get install contextlib", type="danger", timeout=None)
pass
@contextmanager
def ignored(*exceptions):
try:
yield
except exceptions:
pass
try:
from .pyowfs import Connection
root = Connection('localhost:4304')
except Exception as e:
root = None
pass
blueprint = Blueprint('one_wire_ssr', __name__)
@cbpi.actor
class BrewPiSSR(ActorBase):
##global root # Needed to modify global copy of root
OWFS = False
def getBPSSRs():
try:
arr = []
for dirname in os.listdir('/sys/bus/w1/devices'):
if (dirname.startswith("3a")):
cbpi.app.logger.info("Device %s Found (Family: 3A, SSR on GPIO4=w1)" % dirname)
arr.append(dirname)
except:
pass
try:
if root != None:
for s in root.find (family="3A"):
dirname = s.get("address")
if dirname in arr:
##cbpi.app.logger.info("Device %s Found (SSR on owfs); double entry: skipped." % dirname)
pass
else:
cbpi.app.logger.info("Device %s Found (Family: %s, ID: %s, Type: %s, SSR on owfs)" % ( s.get("address"), s.get("family"), s.get("id"), s.get("type") ))
arr.append(s.get("address"))
return arr
except:
return []
actor_name = Property.Select("Name", options=getBPSSRs(), description="The OneWire SSR address.")
port_name = Property.Select("Port", options=["A","B"], description="The OneWire SSR port.")
def getBPstate(self, actor, port):
with ignored(Exception):
if root != None:
for s in root.find (address=actor):
if list(s)[0] == None:
self.OWFS = False
else:
self.OWFS = True
else:
self.OWFS = False
if self.OWFS == False:
with open('/sys/bus/w1/devices/w1_bus_master1/%s/state' % actor, 'rb') as cf:
b = cf.read(1)
# find status port A + B
if (port == "A"):
if (ord(b) & 2):
return ("OFF") ## porta off
else:
return ("ON") ## porta on
if (port == "B"):
if (ord(b) & 8):
return ("OFF") ## portb off
else:
return ("ON") ## portb on
else:
s = root.find(address=actor)[0]
s.use_cache (0)
key = "PIO.BYTE"
if (key in s):
x = s.get(key)
st = list(x)[0]
if (st == 0x03):
sta = "ON"
stb = "ON"
if (st == 0x00):
sta = "OFF"
stb = "OFF"
if (st == 0x01):
sta = "ON"
stb = "OFF"
if (st == 0x02):
sta = "OFF"
stb = "ON"
##cbpi.app.logger.info("SSR: %s, port: %s, stata: %s, statb: %s" % (actor, port, sta, stb))
if (port == "A"):
return (sta)
if (port == "B"):
return (stb)
return ("OFF")
def setBPstate(self, actor, port, state):
with ignored(Exception):
if root != None:
if (root.find(address=actor)):
self.OWFS = True
else:
self.OWFS = False
else:
self.OWFS = False
if self.OWFS == False:
if (port == "A"):
stb = self.getBPstate(actor,"B")
sta = state
if (port == "B"):
sta = self.getBPstate(actor,"A")
stb = state
cbpi.app.logger.info("SSR: %s, port: %s, stata: %s, statb: %s" % (actor, port, sta, stb))
##if (sta == "ON") and (stb =="ON"):
## st = 0x00
##if (sta == "ON") and (stb =="OFF"):
## st = 0x02
##if (sta == "OFF") and (stb =="ON"):
## st = 0x01
##if (sta == "OFF") and (stb =="OFF"):
## st = 0xff
if (sta == "ON") and (stb == "ON"):
st = 0x00
if (sta == "ON") and (stb == "OFF"):
st = 0x02
if (sta == "OFF") and (stb == "ON"):
st = 0x01
if (sta == "OFF") and (stb == "OFF"):
st = 0x03
with ignored(Exception):
##cbpi.app.logger.info("SSR: %s, port: %s, %s Just before write." % (actor, port, state))
with open('/sys/bus/w1/devices/%s/output' % (actor), 'wb') as fo:
fo.write(struct.pack("=B",st))
##cbpi.app.logger.info("SSR: %s, port: %s, %s" % (actor, port, state))
else:
s=root.find(address=actor)[0]
if (port == "A"):
key = "PIO.A"
stb = self.getBPstate(actor,"B")
sta = state
if (port == "B"):
key = "PIO.B"
sta = self.getBPstate(actor,"A")
stb = state
##key="PIO.BYTE"
if (key in s):
##cbpi.app.logger.info("SSR: %s, port: %s, stata: %s, statb: %s" % (actor, port, sta, stb))
if (sta == "ON") and (stb =="ON"):
st = 0x03
if (sta == "ON") and (stb =="OFF"):
st = 0x01
if (sta == "OFF") and (stb =="ON"):
st = 0x02
if (sta == "OFF") and (stb =="OFF"):
st = 0x00
##cbpi.app.logger.info("SSR: %s, port: %s, sta: %04x" % (actor, port, st))
x = s.put(key,st)
pass
def init(self):
#init place for routines
pass
def on(self, power=100):
cbpi.app.logger.info("SWITCH %s (%s) PORT: %s ON" % (self.name, self.actor_name, self.port_name))
if self.actor_name is None:
return
self.setBPstate(self.actor_name, self.port_name, "ON")
def off(self):
cbpi.app.logger.info("SWITCH %s (%s) PORT: %s OFF" % (self.name, self.actor_name, self.port_name))
if self.actor_name is None:
return
self.setBPstate(self.actor_name, self.port_name, "OFF")
@classmethod
def init_global(cls):
print("GLOBAL %s ACTOR" % (cls.__name__))
try:
call(["modprobe", "w1-gpio"])
call(["modprobe", "w1-ds2413"])
except Exception as e:
pass
@cbpi.initalizer()
def init(cbpi):
cbpi.app.register_blueprint(blueprint, url_prefix='/api/one_wire_ssr')