We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c27168c commit 418d2c5Copy full SHA for 418d2c5
apps/spotrem/app.js
@@ -128,7 +128,7 @@ let dragHandler = function(e) {
128
// setup volume knob here.
129
cb(Math.sign(dx))
130
resetOuterScopeVariables();
131
- let volumeKnob = dial(cb);
+ let volumeKnob = dial(cb, {stepsPerWholeTurn:7});
132
let timingOutVolumeKnob = (e)=>{
133
if (!e.b) {
134
setKnobTimeout();
@@ -211,7 +211,7 @@ let dial = function(cb, options) {
211
}
212
213
function stepHandler(step) {
214
- Bangle.buzz(20, 0.3);
+ Bangle.buzz(20, 0.4);
215
cumulative -= THRESHOLD * step;
216
cb(step);
217
0 commit comments