This I don't understand, I didn't like how firm a press I needed on a reloop neon, it was like it had no debouce with a soft press [a soft press registered a double tap]
So I wrote my own debouncing into script
var 'debounce' 0 ? set 'debounce' 1 & repeat_start_instant 'dbCheck' 50ms 2 & cycle 'dbCount' 2 & var 'dbCount' 1 ? pad 1 : set 'debounce' 0
Super, but now on the slicer with this script works in hold mode?!? I've scripted round it,(just queried slicer pad) and sort of accept I've probably got some third shift stock. (price was about right)
But the why of this case has me stumped, any hints
*Edit* It's affecting while_pressed pads but that I can understand.
So I wrote my own debouncing into script
var 'debounce' 0 ? set 'debounce' 1 & repeat_start_instant 'dbCheck' 50ms 2 & cycle 'dbCount' 2 & var 'dbCount' 1 ? pad 1 : set 'debounce' 0
Super, but now on the slicer with this script works in hold mode?!? I've scripted round it,(just queried slicer pad) and sort of accept I've probably got some third shift stock. (price was about right)
But the why of this case has me stumped, any hints
*Edit* It's affecting while_pressed pads but that I can understand.
Posté Fri 03 May 19 @ 8:15 pm
By using repeat_start, you would lose press/unpress. (And even if it would remember, you have debounce set to 1 on press, so on release of the button nothing would be executed)
Posté Sat 04 May 19 @ 5:04 am