Skip to content

Commit 20dd702

Browse files
committed
add automatic button fixer code
1 parent 8e2e986 commit 20dd702

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

BangleButtonFixer.html

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<html><head>
2+
<style>
3+
</style>
4+
<title>Bangle.js 2 Button Fixer</title>
5+
</head><body>
6+
<h1>Bangle.js 2 Button Fixer</h1>
7+
<p>Some Bangle.js 2 can get into a boot loop if their button becomes low resistance (due to water ingress or similar).
8+
This webpage attempts to connect to a Bangle.js 2 and uploads code that will enable something called 'lowResistanceFix'
9+
which causes the Bangle to do extra checks to ensure the button isn't pressed even if it is high resistance. The
10+
Bangle.js firmware must be at least 2v22 for this to work.</p>
11+
<p><b>Usage:</b> Click the button below, then when you see your Bangle appear in the list of devices that pops up,
12+
choose it and click 'Connect' immediately. If this fails, try and time your clicking of the 'Connect' button to exactly
13+
the point that the blocky bootloader text on the Bangle's screen disappears.</p>
14+
<p><button>Connect to Bangle</button></p>
15+
<code id="log"></code>
16+
17+
<script src="js/puck.js"></script>
18+
19+
<script type="text/javascript">
20+
var button = document.getElementsByTagName('button')[0];
21+
22+
function log(txt) {
23+
let log = document.getElementById('log');
24+
log.innerText += txt+"\n";
25+
}
26+
Puck.log = function(level,txt) {
27+
console.log(level+": "+txt);
28+
if (level==1) log(txt);
29+
};
30+
31+
button.addEventListener("click", function() {
32+
Puck.write("E.kickWatchdog();\nBangle.setOptions({lowResistanceFix:1})\n", function(response) {
33+
if (response===null) {
34+
log("!!! Connection failed - please try again");
35+
return;
36+
}
37+
log("===> Written code to temporarity enable");
38+
Puck.write("{let s=require('Storage').readJSON('setting.json',1);s.options.lowResistanceFix=1;require('Storage').writeJSON('setting.json',s);load()}\n", function() {
39+
log("===> Written code to permanently enable");
40+
log("===> Disconnecting");
41+
Puck.close();
42+
});
43+
});
44+
});
45+
</script>
46+
</body></html>

0 commit comments

Comments
 (0)