Created
September 20, 2018 02:49
-
-
Save Sawtaytoes/f76d0a256cbde61984a3d602ec18a0c8 to your computer and use it in GitHub Desktop.
Adding a press-and-hold action
This file contains hidden or 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 { | |
BUTTON_DOWN, | |
BUTTON_UP, | |
holdPressAction, | |
singlePressAction, | |
} from './actions' | |
const timeLimit = 300 | |
let startTime = Date.now() | |
let timeoutId = 0 | |
const isWithinTimeLimit = () => Date.now() - startTime < timeLimit | |
const handleButtonPress = buttonState => { | |
if (buttonState === BUTTON_DOWN) { | |
startTime = Date.now() | |
timeoutId = setTimeout(holdPressAction, timeLimit) | |
} | |
else if (buttonState === BUTTON_UP) { | |
if (isWithinTimeLimit()) { | |
clearTimeout(timeoutId) | |
startTime = 0 | |
singlePressAction() | |
} | |
} | |
} | |
const listenForButtonPress = bluetoothAddress => { | |
new FlicConnectionChannel(bluetoothAddress) | |
.on('buttonUpOrDown', handleButtonPress) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment