Debouncer
Last updated
Last updated
[flow/Debouncer]
Debounces signals received through data
.
Example:
delay
is set to 1000.
"a"@0 received via data
waiting 0.5s (500ms)
"b"@1 received via data
waiting 1.1s (1100ms)
"b"@1 sent via data
(output)
Keywords: time, timing, throttle
data: any
Receives signal to be debounced.
delay: number
Minimum delay in milliseconds between last signal received through data
(input) and sent through data
(output).
Must be set as a parameter.
data: any
Sends the debounced signal.