BangleApps/apps/_example_app/app.js

17 lines
310 B
JavaScript
Raw Normal View History

(() => {
// place your const, vars, functions or classes here
// special function to handle display switch on
Bangle.on('lcdPower', (on) => {
if (on) {
2019-11-26 16:51:23 +00:00
drawWidgets();
// call your app function here
}});
g.clear();
// call your app function here
})();