Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3460244
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T10:12:21+00:00 2026-05-18T10:12:21+00:00

Has anyone worked on the SensorDump Android app before? I’m trying to get Accelerometer

  • 0

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!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T10:12:22+00:00Added an answer on May 18, 2026 at 10:12 am

    I wrote my own sensor dumper, in an activity with something like this in the onCreate:

        mStartTime = SystemClock.uptimeMillis()
            try {
                        f = new FileWriter("/sdcard/download/sensorlog.txt");
                        if (f != null) {
                            f.append("time;value0;value1;value2\r\n");
                        }
            } catch (IOException e1) {
            Log.e(TAG, "Cannot open sensorlog file..");
        }
    
    
    mSensorManager = (SensorManager) this.getSystemService(Context.SENSOR_SERVICE);
        mStepListener = new SensorEventListener() {
        @Override
            public void onAccuracyChanged(Sensor arg0, int arg1) {  
            }
    
            @Override
            public void onSensorChanged(SensorEvent event) {
    
                Sensor sensor = event.sensor;
                if (sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
    
                    double value0 = event.values[0];
                    double value1 = event.values[1];
                    double value3 = event.values[2];
    
                    long time = SystemClock.uptimeMillis() - mStartTime;
    
    
                    try {
                        if (f != null) {
                            f.append(time+";"+value0+";"+value1+";"+value2 + "\r\n");
                        }
                    } catch (IOException e) {
                        Log.e(TAG, "Cannot write to file");
                    }
    
                }
            }
    
        };
    

    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:

        FileWriter f;
    private SensorManager mSensorManager;
    private SensorEventListener mStepListener;
    

    And don’t forget to close the file..

    try {
        f.close();
    } catch (IOException e) {
        Log.e(TAG, "Cannot close file");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Has anyone got EclipseLink MOXy (I'm using eclipselink 2.1.0) to work with Java 5?
I have a script that appends some rows to a table. One of the
I notice in several API's, that you may create a struct which is used
I was reading JavaScript: The Good Parts and the author mentions that JavaScript is
Every time that I want to do a Layout, I'm getting a black layout

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.