私が電話したら
SensorManager mgr = (SensorManager) this.getSystemService(SENSOR_SERVICE);
String text = "The maximum G Force that this device can detect is: " + mgr.getDefaultSensor(Sensor.TYPE_ACCELEROMETER).getMaximumRange();
19.X m/s^2 です。今それは各車軸にありますか?
つまり、G-Force を携帯電話に適用したい場合は、G-Force = SQRT(Xvalue^2 + Yvalue^2 + Zvalue^2) / 9.80 m/s^2 を実行できます。
値は次のことを意味しますか: 最大 G フォース = SQRT (19^2 + 19^2 + 19^2) = 33/9.80 = 3.3G?
遅すぎませんか?何か不足していますか?または、値を高くするためのトリックはありますか? 前もって感謝します。ギレルモ。