Finally Working and mostly efficient

This commit is contained in:
Merlin Raschtuttis 2018-05-24 02:09:22 +00:00
parent 021a39b53c
commit 2db0e62604

View File

@ -49,29 +49,40 @@ def set_bit(value, bit):
def clear_bit(value, bit): def clear_bit(value, bit):
return value & ~(1<<bit) return value & ~(1<<bit)
def i2c_status_thread(): def i2c_status_thread_new():
global state services = ["strom", "licht"]
#ports = (0xFE,0xFD,0xFB,0xF7,0xEF,0xDF,0xBF,0x7F)
# bael loun cant flur
# leba e ina
# d
names = { "flur", "baellebad", "lounge-front", "lounge-back", "baellebad-ein", "lounge-ein", "cantina-ein", "zentral-aus", "cantina"}
ports = (0xF7,0xFF,0xFF,0xFE,0xFD,0xFF,0xFF,0xFF,0xFB)
inputs = (0x23,0x21)
while True: while True:
byte = bus.read_byte(inputs[0]) byte = bus.read_byte(inputs[0])
update = map( lambda x: 1 if (byte | x == x) else 0 , ports) for c,i in i2c_input[0].items():
byte = bus.read_byte(inputs[1]) on = byte | c == c
update[:8] = map( lambda x: 1 if (byte | x == x) else 0 , ports[:8]) if on and state[i] == 0 or not on and state[i] == 1: #Turned on
for i,j,n in state,update,names: mqtc.publish("foobar/oben/" + names[i][0] + "/" + services[names[i][1]] + "/status", states[1 if on else 0], qos=0, retain=False)
if i != j: state[i] = 1 if on else 0
if n in power:
mqtc.publish("foobar/oben/" + n + "/strom/status", states[j], qos=0, retain=False)
else:
mqtc.publish("foobar/oben/" + n + "/licht/status", states[j], qos=0, retain=False)
time.sleep(5) time.sleep(5)
#def i2c_status_thread():
# global state
#ports = (0xFE,0xFD,0xFB,0xF7,0xEF,0xDF,0xBF,0x7F)
# bael loun cant flur
# leba e ina-
# d lich
#ports = (0xF7,0,0,0xFE,0xFD,0xFB,0,0,0,0,0,0,0,0,0,0)
# while True:
# byte_ = bus.read_byte(inputs[0])
# print(byte_)
# update = list(map( lambda x: 1 if (byte_ | x == x) else 0, ports))
# byte_ = bus.read_byte(inputs[1])
# print(byte_)
# update[8:] = list(map( lambda x: 1 if (byte_ | x == x) else 0, ports[8:]))
# for i,j,n in zip(state,update,names):#
# if i != j:
# if n in power:
# mqtc.publish("foobar/oben/" + n + "/strom/status", states[j], qos=0, retain=False)
# else:
# mqtc.publish("foobar/oben/" + n + "/licht/status", states[j], qos=0, retain=False)
# state = update
# time.sleep(5)
#Buttonbefehle #Buttonbefehle
def switch(i,speed=0.5): def switch(i,speed=0.5):
if allowed(i): if allowed(i):
@ -89,38 +100,41 @@ def switch(i,speed=0.5):
o = clear_bit(o,i) o = clear_bit(o,i)
bus.write_byte(0x3f,255-o) bus.write_byte(0x3f,255-o)
state = [0,0,0,0,0,0,0,0,0,0] state = [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
inputs = (0x23,0x21)
states = {0: "OFF", 1: "ON"} states = {0: "OFF", 1: "ON"}
commands = { "flur" : 0, "baellebad" : 1, "lounge-front": 2, "lounge-back" : 3,"baellebad-ein" : 4, "lounge-ein" : 5, "cantina-ein" : 6, "zentral-aus" : 7, "cantina" : 8} commands = { "flur" : 0, "baellebad" : 1, "lounge-front": 2, "lounge-back" : 3,"baellebad-ein" : 4, "lounge-ein" : 5, "cantina-ein" : 6, "zentral-aus" : 7, "cantina" : 8, "flur-strobo": 100, "cantina-strobo": 99}
i2c_input = [{ 0xFE : 4, 0xFD : 5, 0xFB : 8, 0xF7 : 0 }, {}]
names = { 7: [ "zentral",0] , 4: ["baellebad",0], 5: ["lounge",0], 6: ["cantina",0], 0: ["flur",1], 1: ["baellebad",1], 2:["lounge-front",1], 3: ["lounge-back",1], 8: ["cantina",1]}
power = { "zentral" : 7 , "baellebad" : 4, "lounge" : 5, "cantina" : 6 } power = { "zentral" : 7 , "baellebad" : 4, "lounge" : 5, "cantina" : 6 }
light = { "flur" : 0, "baellebad" : 1, "lounge-front" : 2, "lounge-back" : 3, "cantina" : 8 } light = { "flur" : 0, "baellebad" : 1, "lounge-front" : 2, "lounge-back" : 3, "cantina" : 8 }
# foobar/oben/lounge /licht/action # foobar/oben/lounge /licht/action
# cantina /strom/status # cantina /strom/status
# flur # flur
# baellebad # baellebad
# zentral # zentral
def switch_state(i, state): def switch_state(i, state, speed=0.5):
if state[i] != state: # changed if state[i] != state: # changed
switch(i) switch(i,speed=0.5)
state[i] = state state[i] = state
return True return True
return False return False
def switch_toggle(i,speed=0.5):
switch(i, speed=0.5)
state[i] = 0 if state[i] == 1 else 1
def decode_topic(topic, state): def decode_topic(topic, state):
#lazy clist = topic.split('/')
print("dummy") if clist[3] == "licht":
list = topic.split('/') if clist[2] in light:
if list[3] == "licht": if switch_state(light[clist[2]], state):
if list[2] in light:
if switch_state(light[list[2]], state):
mqtc.publish(topic.replace("action", "status"), states[state], qos=0, retain=False) mqtc.publish(topic.replace("action", "status"), states[state], qos=0, retain=False)
elif list[3] == "strom": elif clist[3] == "strom":
if list[2] in power: if clist[2] in power:
if switch_state(power[list[2]], state): if switch_state(power[clist[2]], state):
mqtc.publish(topic.replace("action", "status"), states[state], qos=0, retain=False) mqtc.publish(topic.replace("action", "status"), states[state], qos=0, retain=False)
def msgs(inp, topic): def msgs(inp, topic):
@ -136,29 +150,22 @@ def msgs(inp, topic):
elif l < 3: elif l < 3:
try: try:
msg = int(inp) msg = int(inp)
switch(msg) switch_toggle(msg)
except ValueError: except ValueError:
print ( "No valid value")
return return
#supporting string commmands #supporting string commmands with dimming parameters
else: else:
cmds = c.split(",") cmds = c.split(",")
print ( "Command:", cmds[0], "Number of Parameters:", len(cmds) )
#suporting string commands with an arg separated by ','
if len(cmds) > 1: if len(cmds) > 1:
command = 9001
#error checking #error checking
try: if cmds[0] in commands:
command = commands[cmds[0]] command = cmds[0]
except KeyError: try:
return arg = int (cmds[1])
try: except ValueError:
arg = int (cmds[1]) return
except ValueError:
return
#strobo #strobo
if ( command == 100 or command == 99 ): if ( command == 100 or command == 99 ):
@ -169,12 +176,13 @@ def msgs(inp, topic):
#command with parameter used for dimming #command with parameter used for dimming
else: else:
switch(command,speed = 4*arg/100+1 ) switch_toggle(command,speed = 4*arg/100+1 )
#single string command without parameter #single string command without parameter
else: else:
try: try:
switch(commands[c]) if c in commands:
switch_toggle(commands[c])
except KeyError: except KeyError:
return return
@ -197,7 +205,7 @@ def init_mqtt():
mqtc.on_connect = on_connect mqtc.on_connect = on_connect
mqtc.on_subscribe = on_subscribe mqtc.on_subscribe = on_subscribe
_thread.start_new_thread(i2c_status_thread, ()) _thread.start_new_thread(i2c_status_thread_new, ())
mqtc.loop_forever() mqtc.loop_forever()