You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Actually, I should add, that example stores the data as a string - and to get the maximum data in there you want in binary.

    So instead of:

    saveData(getTime()+","+E.getTemperature(­)+"\n");
    

    you probably want:

    saveData((new Uint16Array([acc.x, acc.y, acc.z])).buffer);
    
About

Avatar for Gordon @Gordon started