This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
""" This is a proper debounce function, the way a electrical engineer would think about it. | |
This wrapper never calls sleep. It has two counters: one for successful calls, and one for rejected calls. | |
If the wrapped function throws an exception, the counters and debounce timer are still correct """ | |
class Debounce(object): | |
def __init__(self, period): |