This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

accelerometer sensor tag



Data acquire by sensore are 3 bytes one of each axis.

So, it is necessary only to convert the raw data into a g data   v = (rawX * 1.0) / (64)  ?

Please, let me know

  • The conversion algorithm is described in the SensorTag User's guide, found here:

    http://processors.wiki.ti.com/index.php/SensorTag_User_Guide

    float calcAccel(int8 rawX)
    {
      float v;
      //-- calculate acceleration, unit g, range -2, +2
      v = (rawX * 1.0) / (64);
      return v;
    }