From 6ae1b173bd97b9d617c2de1795915fcf86b20c04 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sat, 14 Mar 2026 16:34:47 -0600 Subject: [PATCH] feat: Update logging endpoint and add buzz on success --- calculator/calculator.app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/calculator/calculator.app.js b/calculator/calculator.app.js index 3d503a7..2622016 100644 --- a/calculator/calculator.app.js +++ b/calculator/calculator.app.js @@ -619,7 +619,8 @@ function buttonPress(val) { console.log(logStr); if (Bangle.http){ const options = {timeout:3000, method: "post", body: logStr}; - Bangle.http("https://tbot.tannercollin.com/scratchpad", options).then(event => { + Bangle.http("https://tbot.tannercollin.com/banglecalc", options).then(event => { + Bangle.buzz(); console.log("Successfully sent"); }).catch((e)=>{ g.setBgColor(0).clearRect(0, 0, g.getWidth(), RESULT_HEIGHT-1);