Initial code commit

This commit is contained in:
2026-04-07 00:51:07 -04:00
parent 74e95e7c16
commit b6dca80670
6 changed files with 249 additions and 0 deletions

9
src/pkjs/index.js Normal file
View File

@@ -0,0 +1,9 @@
Pebble.addEventListener("ready", function (e) {
Pebble.sendAppMessage({ APP_READY: true });
});
Pebble.addEventListener("appmessage", function (dict) {
if (dict.payload["API_FULL_URL"]) {
console.log("Time to harass " + dict.payload["API_FULL_URL"] + " to find what you watched at " + dict.payload["SLEEP_TIME"]);
}
});