battery-minus

Pebble activity tracker that records battery events
git clone https://git.instinctive.eu/battery-minus.git
Log | Files | Refs | README | LICENSE

commit e4f981c456f910d32b25af311ae059e693eed92b
parent 807c874a63da9079e2d9005cabcef9b07d2cb707
Author: Natasha Kerensikova <natacha@instinctive.eu>
Date:   Sun, 20 Dec 2015 18:48:40 +0000

Add basic infrastructure to the project
Diffstat:
A.fossil-settings/ignore-glob | 3+++
A.gitignore | 7+++++++
ALICENSE | 13+++++++++++++
AREADME.md | 16++++++++++++++++
Aappinfo.json | 15+++++++++++++++
5 files changed, 54 insertions(+), 0 deletions(-)

diff --git a/.fossil-settings/ignore-glob b/.fossil-settings/ignore-glob @@ -0,0 +1,3 @@ +build/* +.lock-waf* +wscript diff --git a/.gitignore b/.gitignore @@ -0,0 +1,7 @@ +wscript + +# Ignore build generated files +build + +# Ignore waf lock file +.lock-waf* diff --git a/LICENSE b/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2015, Natacha Porté + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/README.md b/README.md @@ -0,0 +1,16 @@ +# Battery- + +This Pebble watchapp is inspired from the wonderful [Battery+][1] +by Ycleptic Studios. While waiting for it to be ported on the Pebble +Time Round, `Battry-` gathers the same input data and make it directly +available. + +[1]: https://apps.getpebble.com/en_US/application/55197642d6fa6f2633000092 + +So technically, it uses the activity tracker slot to gather all +battery-related events and store them into persistent storage. The +user-facing app retrieves the data and displays it in a simple menu. + +`Battery-` is also available for rectangular Pebbles, for people who +would rather have the raw data to process themselves, instead of the +ready-to-use processed data showed by `Battery+`. diff --git a/appinfo.json b/appinfo.json @@ -0,0 +1,15 @@ +{ + "uuid": "c3d8cf15-c8fe-4699-806c-24b9c163cb33", + "shortName": "Battery-", + "longName": "Battery-", + "companyName": "Natasha Kerensikova", + "versionLabel": "1.0", + "sdkVersion": "3", + "targetPlatforms": ["aplite", "basalt", "chalk"], + "watchapp": { + "watchface": false + }, + "resources": { + "media": [] + } +}