diff --git a/apps/cubescramble/cube-scramble.js b/apps/cubescramble/cube-scramble.js index 72ed6c7e3..c0b1d11c3 100644 --- a/apps/cubescramble/cube-scramble.js +++ b/apps/cubescramble/cube-scramble.js @@ -63,9 +63,12 @@ const presentScramble = () => { E.showMessage(makeScramble().join(" ")); }; -presentScramble(); - -setWatch(() => { - Bangle.buzz(); +const init = () => { presentScramble(); -}, BTN1, {repeat:true}); + + setWatch(() => { + presentScramble(); + }, BTN1, {repeat:true}); +}; + +init();