Has anyone worked on the SensorDump Android app before? I’m trying to get Accelerometer values from my phone and I’ve been able to dump it in to a CSV file on my computer. However, I’d like to add a timestamp to my values as well and SensorDump doesn’t provide for that.
I can’t find any documentation online ,and I was wondering if anyone had tried to modify it, or if there’s any other app out there that does the same (i.e. lets me write Sensor Values onto a file, with timestamp).
Thanks!
I wrote my own sensor dumper, in an activity with something like this in the onCreate:
This will give you a csv text file, with a timestamp and the 3 values.
ps. Don’t forget to ask for SD-card write permission.
Also declare this first:
And don’t forget to close the file..