From 9389293ac31a43c18859345caecc5bf13c5664fe Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 31 Mar 2017 04:31:28 +0000 Subject: [PATCH] Correct spurious 'input' commands to 'output' --- bmcd | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/bmcd b/bmcd index 3994dc5..81fc2ec 100755 --- a/bmcd +++ b/bmcd @@ -17,34 +17,34 @@ pidfile = '/run/bmcd/bmcd.pid' is_pled_flashing = Event() def powerled_on(): - GPIO.input(gpio_pled, 1) + GPIO.output(gpio_pled, 1) def powerled_off(): - GPIO.input(gpio_pled, 0) + GPIO.output(gpio_pled, 0) def powerled_flash(is_pled_flashing): while is_pled_flashing.isSet(): - GPIO.input(gpio_pled, 1) + GPIO.output(gpio_pled, 1) time.sleep(1) - GPIO.input(gpio_pled, 0) + GPIO.output(gpio_pled, 0) time.sleep(1) is_pled_flashing.clear() return def powersw_press(): - GPIO.input(gpio_psw, 1) + GPIO.output(gpio_psw, 1) time.sleep(0.5) - GPIO.input(gpio_psw, 0) + GPIO.output(gpio_psw, 0) def powersw_hold(): - GPIO.input(gpio_psw, 1) + GPIO.output(gpio_psw, 1) time.sleep(8) - GPIO.input(gpio_psw, 0) + GPIO.output(gpio_psw, 0) def resetsw_press(): - GPIO.input(gpio_rsw, 1) + GPIO.output(gpio_rsw, 1) time.sleep(0.5) - GPIO.input(gpio_rsw, 0) + GPIO.output(gpio_rsw, 0) def locate_on(): is_pled_flashing.set()