diff --git a/calculator/calculator.app.js b/calculator/calculator.app.js index 5e7fc12..2c1e8d8 100644 --- a/calculator/calculator.app.js +++ b/calculator/calculator.app.js @@ -554,6 +554,7 @@ function buttonPress(val) { } break; case 'B': + Bangle.buzz(); if (isDecimal) { isDecimal = false; displayOutput(currNumber); @@ -584,6 +585,7 @@ function buttonPress(val) { if (swipeEnabled) drawNumbers(); break; case '.': + Bangle.buzz(); specials.R.val = 'C'; if (!swipeEnabled) drawKey('R', specials.R); isDecimal = true; @@ -644,6 +646,7 @@ function buttonPress(val) { } break; default: { + Bangle.buzz(); specials.R.val = 'C'; if (!swipeEnabled) drawKey('R', specials.R); const is0Negative = (currNumber === 0 && 1/currNumber === -Infinity);