Try to get scramble reset to work

pull/888/head
nlisgo 2021-11-18 14:25:32 +00:00
parent fe27b58f97
commit 0e0086c5d8
1 changed files with 8 additions and 5 deletions

View File

@ -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();