Show date on accel

This commit is contained in:
2026-06-01 23:11:57 -04:00
parent 6ccb9fe4a9
commit 381db14404
2 changed files with 29 additions and 7 deletions
-6
View File
@@ -23,12 +23,6 @@ function locationSuccess(pos) {
const normalized_temp = clamped_temp - min_temp;
const temp_bars = Math.round(normalized_temp / 4);
console.log("Current temp: " + current_temp);
console.log("Min temp: " + min_temp);
console.log("Max temp: " + max_temp);
console.log("Clamped temp: " + clamped_temp);
console.log("Bars " + temp_bars);
Pebble.sendAppMessage({ PKJS_TEMP_BAR_COUNT: temp_bars });
}
);