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