From 9d634f055f87eefb248f87335c80510d5b9fa62c Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Mon, 11 Nov 2019 18:31:39 +0000 Subject: [PATCH] Don't 'load' watch, just display message asking for reload --- comms.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comms.js b/comms.js index 0495af095..19f4d8a37 100644 --- a/comms.js +++ b/comms.js @@ -38,7 +38,7 @@ removeApp : app => { // expects an app structure }).join(""); console.log("removeApp", cmds); return new Promise((resolve,reject) => { - Puck.write("\x03"+cmds+"\x10load()\n",(result) => { + Puck.write("\x03"+cmds+"\x10E.showMessage('Hold BTN3\\nto reload')\n",(result) => { if (result===null) return reject(""); resolve(); });