Most recent activity
-
-
-
Hi,
sorry to hear this. Would you please try a factory reset with these instructions and let us know.
https://forum.espruino.com/conversationsĀ/394361/#comment17302828
Also, which firmware version are you running? When and where did you buy your Bangle.js v2?
Thanks!
Cheers,
Christine -
-
-
-
You can try a factory reset like it is described here:
https://forum.espruino.com/conversationsĀ/394361/#comment17302828
-
Hi!
You can try something like this:
// Load the WiFi and HTTP modules var wifi = require("Wifi"); var https = require("http"); // Your WiFi credentials var SSID = "your-SSID"; var PASSWORD = "your-password"; // Connect to WiFi wifi.connect(SSID, { password: PASSWORD }, function(err) { if (err) { console.log("WiFi connection error: ", err); return; } console.log("Connected to WiFi"); // Options for the HTTPS request var options = { host: "your-server.com", port: 443, path: "/your-endpoint", method: "PUT", headers: { "Content-Type": "application/json", "Content-Length": JSON.stringify({ data: "your-data" }).length } };
-
No problem. Glad the problem is solved.