Most recent activity
-
I have noticed sometimes that my Bangle.js 2 becomes frozen when connected to gadgetbridge. I will look at my watch and realize the time has been stuck for an he hour and it is unresponsive to button presses. Disconnecting the device in the gadgetbridge android app will fix the issue. I can then reconnect without issues. This seems to happens every few days.
On Bangle JS:
- FW 2v10.219
- Android integration app
- weather app
- weather clock
On android device:
- Android 11
- Gadgetbridge 0.63.1
Has anyone else noticed this issue?
- FW 2v10.219
-
I just tried it out and it is indeed awesome. Thanks @crazysaem !
-
Hmm if typing the JSON manually maybe run it through a JSON validator tool like this one: https://jsonlint.com/
In the web IDE you can also just upload a file directly from your computer.
-
http://www.espruino.com/Reference#t_Storage
JSON is easiest since there is built in support for reading to and writing from JSON files with automatic parsing/serialization with the
Storage.readJSON
and
Storage.writeJSON
. But you can useStorage.read
andStorage.write
for other formats, you just have to handle the parsing yourself.Also see this guide:
http://www.espruino.com/Bangle.js+Storage -
-
Yeah have been meaning to do that, was hoping the firmware update app would be ready soon but guess ill try doing it the "hard" way.