aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseniy Movshev <dodoradio@outlook.com>2023-05-28 21:57:00 +0100
committerArseniy Movshev <dodoradio@outlook.com>2023-05-28 22:16:23 +0100
commit8ae2b6d604b7b188f0000003fcbf08c9eac949e0 (patch)
tree6744b2df1a53f5f796cff9ec22e28238bc4149e7
parent9aa1dd9ea928768617a7f4b6fe2c87ce7a27f9e9 (diff)
Revise README
Diffstat (limited to '')
-rw-r--r--README.md26
1 files changed, 24 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7ce4504..28029e4 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,24 @@
-# AsteroidOS Hello World App
-A simple hello world app for [AsteroidOS](http://asteroidos.org/)
+# Asteroid-health
+A health tracker frontend for the data collected by sensorlogd
+
+# Basic usage
+Currently the app doesn't expose everything that the logger does.
+
+What the app does:
+* show steps data (total steps per day)
+* allow turning on and off the step and heartrate tracking
+
+What sensorlogd allows, which isn't used by the app:
+* setting custom recording intervals
+* display heartrate data (the data is recorded but not displayed)
+
+TODO:
+* translations
+* recording of other sensors, such as GPS, altimeter or barometer (it's a sensor logger, not just a health tracker)
+
+## Getting your data
+It should be obvious from a quick search of this source code that neither the app nor the logger contain any way to leak your data onto the internet. Your data is yours to keep: here's how you can get to it.
+
+Data is stored in plaintext in ~/.asteroid-sensorlogd/ . There are separate directories for each sensor, and within those are separate file for each day.
+
+Each line in a file is a single recording, in the format `[seconds since UNIX epoch]:[value]`.