mirror of https://github.com/espruino/BangleApps
still trying to fix the lack of vibrations
parent
463c3fec23
commit
1872f264d1
|
@ -7,3 +7,4 @@
|
|||
1.05: toggled the acceleration handler to prevent infinite buzz loop
|
||||
1.06: increased vibration again
|
||||
1.07: IDK how to use promises properly
|
||||
1.08: still trying to fix the lack of vibrations
|
||||
|
|
|
@ -132,7 +132,7 @@ function random (max) {
|
|||
function vibrate() {
|
||||
|
||||
Bangle.on ('accel', voidFn);
|
||||
Bangle.buzz (200, 1).then ((value) =>
|
||||
Bangle.buzz().then ((value) =>
|
||||
|
||||
Bangle.on ('accel', accelHandler)
|
||||
);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ "id": "multidice",
|
||||
"name": "multiple dice roller",
|
||||
"shortName":"multidice",
|
||||
"version":"1.07",
|
||||
"version":"1.08",
|
||||
"description": "roll anywhere from 1-8 dice at the same time",
|
||||
"icon": "app.png",
|
||||
"tags": "tool,game",
|
||||
|
|
Loading…
Reference in New Issue