summaryrefslogtreecommitdiff
path: root/daemon/logger.cpp (unfollow)
AgeCommit message (Collapse)Author
2023-08-07Add some compensation to the barometerArseniy-Movshev
Here's the justification from the asteroid-toolwatch commit logs: > The app includes a means of 'calibrating' the barometer reading. This is not a system level calibration and only affects the app (or any other apps that choose to use the value I'm setting in dconf). The mechanism was initially inspired by the same feature on Casio's watches: under WearOS, all of Casio's apps use a shared calibration offset for barometer. > The calibration aims to rectify the infamous inaccuracy of the android barometer sensor. While the sensors are generally very precise and can sense small changes in air pressure, the sensors often lose calibraton and hence suffer from zero error. This can be somewhat helped by allowing the user to set a zero point - it seems this allowed Casio to make the sensor into an actually useful feature. > There was discussion about making this calibration into a system-level feature (for example, as a patch to sensorfw or to QtSensors) but I think it's reasonable to expect the sensor to always return the raw value (even if it is wrong) and then have the calibration as a separate, opt-in feature. The daemon uses the same dconf value as in toolwatch.
2023-08-07Add a new logger for barometerArseniy-Movshev
This just logs the raw sensor values, and doesn't do any compensation. The same model as the heartrate sensor, where it's started and then we wait for a reasonable reading to come in.
2023-07-23Weight: make sure we have a directory to write intoArseniy-Movshev
2023-07-23Moved setupFilePath to common from loggerArseniy-Movshev
This function may need to be used from qml
2023-07-22weightDataLoader: add support for floatsArseniy-Movshev
Weight data may now be stored as fractions of a kilogram
2023-07-21Add file watcher to stepsDataLoaderArseniy-Movshev
this is essentially a copy of the previous commit applied to hrDataLoader
2023-07-21Add filesystem watchers to hrdataloader to update when new data comes inArseniy-Movshev
When data for a specific file is requested, that file is added to the watch list. Currently these files aren't ever removed from the watch list, hopefully we won't be loading enough files to cause problems, at least for now
2023-07-21qmlPlugin: make file loading less verboseArseniy-Movshev
This removes a large proportion of the log spam. This was getting a bit too much because UI now loads several graphs at once.
2023-07-12Remove leftover qtpositioning referenceArseniy-Movshev
This was used in testing versions of sensorlogd but got removed, so let's remove it from compilation chain as well
2023-07-12Make sure we return a sane value even if sensor isn't warmed upArseniy-Movshev
it seems that the sensor takes a while to warm up, and until it does, it will return 0. This fixes a check that previously already existed, but was checking the wrong value - if the step offset causes step count to increase, we will be returning erroneous values.
2023-07-12Add a method for getting data over multiple daysArseniy-Movshev
2023-07-02Add a method for adding data points to weightArseniy-Movshev
2023-07-02Add a weight data accessorArseniy-Movshev
this doesn't have a sensor associated with it, as it's meant to be logged manually through UI - but we're still using the same model as the other data sources
2023-07-02Move fileaddrecord to common.h so that it can be used from qml pluginArseniy-Movshev
2023-06-29Return log value if step counter value isn't saneArseniy-Movshev
2023-06-20DataLoaders: switch to qvariant for qml compatibilityArseniy-Movshev
2023-06-20StepsDataLoader: add a property that updates today's live step countArseniy-Movshev
this also changes the behaviour of getTodayTotal()
2023-06-20Compensate for steps when daemon starts up and when date changesArseniy-Movshev
This is a radical new approach where we just scrap all steps that have happened outside of the current day. Theoretically, this should be more robust. Remains to be seen whether it actually does work any better.
2023-06-20Add HrDataLoaderArseniy-Movshev
This provides a similar interface to the step data loader, but doesn't have a 'total' function because that's not really that useful.
2023-06-20Move fileNameForDate to a common header fileArseniy-Movshev
This function shows up in quite a few places so this seems justified. Other functions may get this treatment later
2023-06-20StepsDataLoader: Add a way to get the full day's dataArseniy-Movshev
additionally, this renames the current data access function to 'getTotalForDate()' while the new function gets the old name of 'getDataForDate()'. This naming seems more appropriate. This should allow apps using the QML interface to implement their own graphs
2023-06-11Remove HeartrateGraph QML elementArseniy-Movshev
After making several attempts at integrating this element into asteroid-health, I'm still not happy with the heartrate graph code. The issue is that this element doesn't seem to be usable 'as is', and needs some sort of wrapper around it to make it fit with the style of asteroid-health. Effectively this would split the code in half across the two codebases. I also didn't want to specialise this graph code too much for asteroid-health, as I still wanted it to be somewhat generic and reusable. I've decided that I'm going to move this code to asteroid-health. This would allow that graph code to be much more integrated, and would mean that sensorlogd should become much more generic and much easier to use.:q
2023-06-11StepCounter: revert to an offsets modelArseniy-Movshev
It seems that the step counter doesn't actually allow setting the steps value. While setSteps() will cause the reading to change, the step counter may reset back to the previous step count when more steps are taken.
2023-06-05Add a log message to debug failing step counter resetsArseniy-Movshev
2023-06-02Make sure we aren't writing to previous day if today file existsArseniy-Movshev
some other checks should also be put in place to make sure that we aren't decreasing the previous day's step count
2023-06-02settings: add step goal targetArseniy-Movshev
currently this doesn't interface with the daemon in any way, this is added for future use
2023-06-02LoggerSettings: fix wrong default sensor intervalsArseniy-Movshev
This inconsistency suggests that these values should be saved somewhere in a common place
2023-06-01Clean up log messagesArseniy-Movshev
2023-06-01Add a check for whether the daemon is starting the first time this bootArseniy-Movshev
2023-06-01Make sure we open files as readonly when we're reading them so we don't ↵Arseniy-Movshev
create random new files This shouldn't happen anyway, but this change helps avoid error conditions
2023-06-01Trigger a recording when the daemon startsArseniy-Movshev
2023-06-01step counter: Make sure that there's a time for the last record when sensor ↵Arseniy-Movshev
logger is constructed otherwise the next recording would assume that a midnight has passed and write bad values to the sensor
2023-06-01Move to resetting the sensor in hardwareArseniy-Movshev
The step counter is now set in hardware to the previous reading + any changes when the daemon starts This means that the step counter now just records the raw step counter value, and adjusts it correctly when needed This introduces a bug where the step counter will show bad readings if the daemon is restarted without a system reboot: the step counter's current value will be added to the last recorded value, which will cause the number of steps to effectively double in most situations. This might be fixed with some code to detect if a system reboot has passed since the last time the counter started.
2023-05-31Clear the step counter in hardware after midnightArseniy-Movshev
The midnight detection code is basic, it just checks if the date has changed between days. So that the user doesn't lose steps on their midnight outings, we write the current value to the previous day's log file before wiping the counter. This will always be the previous day, even if recordings have been missing for a few days.
2023-05-30Move overnight steps compensation code to the place where it's recordedArseniy-Movshev
2023-05-30Add some useful properties to hrgraphArseniy-Movshev
2023-05-30Make graph points roundArseniy-Movshev
2023-05-30enable antialiasing on itemArseniy-Movshev
2023-05-30Fix incorred height and width usageArseniy-Movshev
2023-05-30Add some more parameters to the heartrate graphArseniy-Movshev
2023-05-30Add heartrate graphArseniy-Movshev
2023-05-29Add a method for daemon recordings to be triggered from qmlArseniy-Movshev
This allows the app to always show an up-to-date value
2023-05-29Make sure step count doesn't duplicateArseniy-Movshev
this works in general, but won't work on devices such as catfish or medaka, which are able to count steps when the step counter isn't active. Those will need custom code in the future.
2023-05-28Make the log path configurableArseniy-Movshev
This also renames it to sensorlogd from the obsolete asteroid-healthtracker and hides it by default
2023-05-28Allow sensorlogd to set up its directory structureArseniy-Movshev
This code sets up all the paths used by sensorlogd before it is started
2023-05-28Add a new LoggerSettings typeArseniy-Movshev
this independently accesses the settings file for the logger, and has a call to reinitialise it (which will cause settings to be reread)
2023-05-28Add a dbus interface to allow reinitialising the loggerArseniy-Movshev
This is to allow the logger to be reinitialised form qml
2023-05-28Fix up the settings implementationArseniy-Movshev
add interval and enabled settings for all sensors get rid of some bad duplicates make sure that application properties are set up before settings are accessed
2023-05-27fix qml accessor:Arseniy-Movshev
- make sure that the reader doesn't create random files - it is unclear why readwrite was used here in the first place, as readonly access is appropriate. - make sure that `line` always has a value even if file is empty
2023-05-26steps: add more useful data fetch methodArseniy-Movshev