|
||
---|---|---|
.. | ||
ChangeLog | ||
README.md | ||
app-icon.js | ||
app.js | ||
app.png | ||
description.png | ||
metadata.json | ||
screenshot.png | ||
screenshot_2.png | ||
widget.js |
README.md
Timer Widget
This is a fork of the Chrono Widget, but implements a simpler UI. Additionally, it exposes functions for other apps or clocks such that they can easily implement a timer. Currently, it is used by lcars and notanalog.
Overview
If you open the app, you can simply control the timer by clicking on top, bottom, left or right of the screen. If you tab at the middle of the screen, the timer is started / stopped.
Lib
Different functions are exposed by widtmr which enables other apps to directly use and integrate this functionality:
The following functions are available:
- isStarted() -> boolean
- setStarted(boolean) -> void
- setTimer(t) -> void
- increaseTimer(int) -> void
- decreaseTimer(int) -> void
- getRemainingMinutes() -> int
- getRemainingTime() -> DateTime
- getRemainingTimeStr() -> str
For example if we want to increase the timer by +5 minutes each time the touch event is fired:
Bangle.loadWidgets();
...
Bangle.on('touch', function(btn, e){
// Set to zero if alarm was disabled before. Otherwise
// it starts from the last setting made by the user.
if(!isAlarmEnabled()){
WIDGETS["widtmr"].setTimer(0);
}
WIDGETS["widtmr"].increaseTimer(5);
WIDGETS["widtmr"].setStarted(true);
});
Example to decrease the timer by 5 and stop if 0 is reached:
Bangle.loadWidgets();
...
Bangle.on('touch', function(btn, e){
WIDGETS["widtmr"].decreaseTimer(5);
}
You can find implementations and usages in the lcars or notanalog app.
Creator
Thanks to...
Forked from Chrono Widget of Purple-Tentacle
Time icon created by CreativeCons - Flaticon