power on 2 clicks, light on 1 click

This commit is contained in:
Markus Schmidl 2017-03-02 23:11:41 +01:00
parent e753dcf093
commit 1962b35c8b
1 changed files with 5 additions and 5 deletions

View File

@ -85,15 +85,15 @@ def exec_chch_button_cmd(event):
else:
sys.stderr.write("No mode with " + str(count) + " short press and a long press\n")
else:
# '.' toggle current room
if count == 1:
event.chip.output_pins[event.pin_num].toggle()
# '. .' room specific function
elif count == 2:
# '.' room specific function
elif count == 1:
if event.pin_num == 0:
call(["/home/automation/chch-power/light.sh"])
else:
sys.stderr.write("No room specific function for room " + str(event.pin_num) + "\n")
# '. .' toggle current room
if count == 2:
event.chip.output_pins[event.pin_num].toggle()
else:
sys.stderr.write("No mode with " + str(count) + " short press at pin " + str(event.pin_num) + "\n")
chch_status_output(event.chip)