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 957e2dc commit 80d2957Copy full SHA for 80d2957
modules/Dial_Display.js
@@ -56,13 +56,17 @@ let dialDisplayGenerator = function(options) {
56
return dialDisplay;
57
}
58
59
+// Debugging below
60
+
61
let options = {};
62
let dialDisplay = dialDisplayGenerator(options);
63
64
let cb = (step)=>{
65
print(step);
- dialDisplay(step);
66
+ let value = dialDisplay(step);
67
+ print(value);
68
};
69
70
+g.clear();
71
let dial = require("Dial")(cb);
72
Bangle.on("drag", dial);
0 commit comments