Skip to content

Commit 418d2c5

Browse files
author
thyttan
committed
spotrem: tweak knob steps per turn, tweak buzz
1 parent c27168c commit 418d2c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/spotrem/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ let dragHandler = function(e) {
128128
// setup volume knob here.
129129
cb(Math.sign(dx))
130130
resetOuterScopeVariables();
131-
let volumeKnob = dial(cb);
131+
let volumeKnob = dial(cb, {stepsPerWholeTurn:7});
132132
let timingOutVolumeKnob = (e)=>{
133133
if (!e.b) {
134134
setKnobTimeout();
@@ -211,7 +211,7 @@ let dial = function(cb, options) {
211211
}
212212

213213
function stepHandler(step) {
214-
Bangle.buzz(20, 0.3);
214+
Bangle.buzz(20, 0.4);
215215
cumulative -= THRESHOLD * step;
216216
cb(step);
217217
}

0 commit comments

Comments
 (0)