Yeah, that's super easy.
I'm very close to having the app ready. The main program is done (first pass, at least). All I'm finishing up now is getting each of the hacks transferred over. Just a couple more to go.
If you can't wait, it's really simple to fix on your own:
in main.xml, look for this block:
Code:
else if (id == "POWER") {
if (value) {
var lowBattery = this.getVariable("LOW_BATTERY");
if (lowBattery)
this.setVariable("LOW_BATTERY", 0);
this.batteryWarning = false;
t = 0;
}
}
Once you find it, delete the t = 0; line. That should do it!