mirror of https://github.com/espruino/BangleApps
13 lines
289 B
JavaScript
13 lines
289 B
JavaScript
|
// place your const, vars, functions or classes here
|
||
|
|
||
|
// special function to handle display switch on
|
||
|
Bangle.on('lcdPower', (on) => {
|
||
|
if (on) {
|
||
|
// call your app function here
|
||
|
// If you clear the screen, do Bangle.drawWidgets();
|
||
|
}
|
||
|
});
|
||
|
|
||
|
g.clear();
|
||
|
// call your app function here
|