diff --git a/apps/chargerot/boot.js b/apps/chargerot/boot.js index 10f7638af..0a4361c50 100644 --- a/apps/chargerot/boot.js +++ b/apps/chargerot/boot.js @@ -1,6 +1,7 @@ (() => { const chargingRotation = 0 | require('Storage').readJSON("chargerot.settings.json").rotate; const defaultRotation = 0 | require('Storage').readJSON("setting.json").rotate; + if (Bangle.isCharging()) g.setRotation(chargingRotation&3,chargingRotation>>2).clear(); Bangle.on('charging', (charging) => { if (charging) { g.setRotation(chargingRotation&3,chargingRotation>>2).clear();