diff --git a/apps.json b/apps.json index 7151661fb..483c39d77 100644 --- a/apps.json +++ b/apps.json @@ -3141,7 +3141,7 @@ { "id": "kitchen", "name": "Kitchen Combo", "icon": "kitchen.png", - "version":"0.11", + "version":"0.12", "description": "Combination of the Stepo, Walkersclock, Arrow and Waypointer apps into a multiclock format. 'Everything but the kitchen sink'. Requires firmware v2.08.167 or later", "tags": "tool,outdoors,gps", "type":"clock", @@ -3149,10 +3149,9 @@ "interface":"waypoints.html", "storage": [ {"name":"kitchen.app.js","url":"kitchen.app.js"}, - {"name":"stepo.kit.js","url":"stepo.kit.js"}, - {"name":"gps.kit.js","url":"gps.kit.js"}, - {"name":"digi.kit.js","url":"digi.kit.js"}, + {"name":"stepo2.kit.js","url":"stepo2.kit.js"}, {"name":"swatch.kit.js","url":"swatch.kit.js"}, + {"name":"gps.kit.js","url":"gps.kit.js"}, {"name":"compass.kit.js","url":"compass.kit.js"}, {"name":"kitchen.img","url":"kitchen.icon.js","evaluate":true} ], diff --git a/apps/kitchen/ChangeLog b/apps/kitchen/ChangeLog index ea42a3f11..1df5d867f 100644 --- a/apps/kitchen/ChangeLog +++ b/apps/kitchen/ChangeLog @@ -9,3 +9,4 @@ 0.09: Added heart rate monitor app 0.10: Converted Stepo to use direct screen writes, added a Trip Counter feature to stepo 0.11: Detect when waypoints.json is not present, error E-WPT +0.12: Added stepo2 as a replacement for stepo and digi diff --git a/apps/kitchen/README.md b/apps/kitchen/README.md index 502ec1a7f..2a1b148fd 100644 --- a/apps/kitchen/README.md +++ b/apps/kitchen/README.md @@ -41,9 +41,25 @@ The following buttons depend on which face is currently in use - Waypointer : select next waypoint +## Stepo2 +![](screenshot_stepo2.jpg) + +- Requires one of the pedominter widgets to be installed +- Stepo2 is a combination of Stepo and Digi and now replaces them +- Displays the time in large font +- Display current step count in a doughnut gauge +- The gauge show percentage of steps out of a goal of 10000 steps +- When the battery is less than 25% the doughnut turns red +- Use BTN1 to switch to the Trip Counter, use long press to reset Trip Counter +- Use BTN1 to cycle through the displays of Day,Date, Trip Counter, Battery %, Mem % and Firmware +- Use BTN3 to switch to the next app + + + ## Stepo ![](screenshot_stepo.jpg) +- now replaced by Stepo2 but still available if you install manually - Requires one of the pedominter widgets to be installed - Displays the time in large font - Display current step count in a doughnut gauge @@ -62,11 +78,13 @@ The following buttons depend on which face is currently in use ## Digi ![](screenshot_digi.jpg) +- now replaced by Stepo2 but still available if you install manually - Displays the time in large font - Display day and date - Use BTN1 to switch between display of battery and memory %. - Use BTN3 to switch to the next app. + ## Swatch ![](screenshot_swatch.jpg) - A simple stopwatch @@ -254,9 +272,8 @@ The following error codes will be displayed if one of the dependancies is not me ### Issues / Future enhancements +* Add a settings app so that 'Kitchen' based clocks can be enabled/disabled * GPS time display shows GMT and not BST, needs localising -* Occassional buzzing after 2-3 days of use, seems to disappear after - a reset to the launcher menu. Needs investigation * Automatically switch the GPS power setting from Super-E to PSMOO 10 seconds after the LCD goes off. At present I just rely on using the GPSSetup app and set the GPS power mode that I want. diff --git a/apps/kitchen/kitchen.app.js b/apps/kitchen/kitchen.app.js index fcaa048bb..a7196ba83 100644 --- a/apps/kitchen/kitchen.app.js +++ b/apps/kitchen/kitchen.app.js @@ -2,7 +2,7 @@ var FACES = []; var STOR = require("Storage"); STOR.list(/\.kit\.js$/).forEach(face=>FACES.push(eval(require("Storage").read(face)))); -var iface = STOR.list(/\.kit\.js$/).indexOf("stepo.kit.js"); +var iface = STOR.list(/\.kit\.js$/).indexOf("stepo2.kit.js"); var face = FACES[iface](); var firstPress var pressTimer; diff --git a/apps/kitchen/screenshot_stepo2.jpg b/apps/kitchen/screenshot_stepo2.jpg new file mode 100644 index 000000000..acff792b0 Binary files /dev/null and b/apps/kitchen/screenshot_stepo2.jpg differ