removed edge detection

This commit is contained in:
Devaev Maxim
2020-09-10 13:40:56 +03:00
parent ff36ff203e
commit 44c50aa4de
4 changed files with 1 additions and 47 deletions

View File

@@ -57,7 +57,6 @@ class Plugin(BaseAtx): # pylint: disable=too-many-instance-attributes
click_delay: float,
long_click_delay: float,
edge_detection: bool,
state_poll: float,
) -> None:
@@ -77,7 +76,6 @@ class Plugin(BaseAtx): # pylint: disable=too-many-instance-attributes
self.__reader = gpio.BatchReader(
pins=set([self.__power_led_pin, self.__hdd_led_pin]),
edge_detection=edge_detection,
interval=state_poll,
notifier=self.__notifier,
)
@@ -95,7 +93,6 @@ class Plugin(BaseAtx): # pylint: disable=too-many-instance-attributes
"click_delay": Option(0.1, type=valid_float_f01),
"long_click_delay": Option(5.5, type=valid_float_f01),
"edge_detection": Option(False, type=valid_bool),
"state_poll": Option(0.1, type=valid_float_f01),
}