diff --git a/power_mqtt1.py b/power_mqtt1.py index f82032a..9212c84 100755 --- a/power_mqtt1.py +++ b/power_mqtt1.py @@ -49,29 +49,40 @@ def set_bit(value, bit): def clear_bit(value, bit): return value & ~(1< 1: - + command = 9001 #error checking - try: - command = commands[cmds[0]] - except KeyError: - return - try: - arg = int (cmds[1]) - except ValueError: - return + if cmds[0] in commands: + command = cmds[0] + try: + arg = int (cmds[1]) + except ValueError: + return #strobo if ( command == 100 or command == 99 ): @@ -169,12 +176,13 @@ def msgs(inp, topic): #command with parameter used for dimming else: - switch(command,speed = 4*arg/100+1 ) + switch_toggle(command,speed = 4*arg/100+1 ) #single string command without parameter else: try: - switch(commands[c]) + if c in commands: + switch_toggle(commands[c]) except KeyError: return @@ -197,7 +205,7 @@ def init_mqtt(): mqtc.on_connect = on_connect mqtc.on_subscribe = on_subscribe - _thread.start_new_thread(i2c_status_thread, ()) + _thread.start_new_thread(i2c_status_thread_new, ()) mqtc.loop_forever()