summaryrefslogtreecommitdiff
path: root/kvmd
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2019-11-20 05:08:49 +0300
committerDevaev Maxim <[email protected]>2019-11-20 05:08:49 +0300
commit01f92b6f19a230e9fb45e955afdec871b938371a (patch)
tree71ba442db852c22a944a2cfc16e9b277a2d6339e /kvmd
parent9f4cc35a7547ccc39c8342fef8d60c71188a335d (diff)
don't invert atx leds by default
Diffstat (limited to 'kvmd')
-rw-r--r--kvmd/plugins/atx/gpio.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/kvmd/plugins/atx/gpio.py b/kvmd/plugins/atx/gpio.py
index 287d2b19..c657a7f3 100644
--- a/kvmd/plugins/atx/gpio.py
+++ b/kvmd/plugins/atx/gpio.py
@@ -80,10 +80,10 @@ class Plugin(BaseAtx): # pylint: disable=too-many-instance-attributes
@classmethod
def get_plugin_options(cls) -> Dict:
return {
- "power_led_pin": Option(-1, type=valid_gpio_pin),
- "hdd_led_pin": Option(-1, type=valid_gpio_pin),
- "power_led_inverted": Option(True, type=valid_bool),
- "hdd_led_inverted": Option(True, type=valid_bool),
+ "power_led_pin": Option(-1, type=valid_gpio_pin),
+ "hdd_led_pin": Option(-1, type=valid_gpio_pin),
+ "power_led_inverted": Option(False, type=valid_bool),
+ "hdd_led_inverted": Option(False, type=valid_bool),
"power_switch_pin": Option(-1, type=valid_gpio_pin),
"reset_switch_pin": Option(-1, type=valid_gpio_pin),