InterviewSolution
Saved Bookmarks
| 1. |
Which of the formulae give us the angle of inclination in the ADXL-335?(a) theta=atan(X_Value/sqrt((Y_Value*Y_Value)+(Z_Value*Z_Value)))(b) theta=atan(X_Value/sqrt((Y_Value*Y_Value)*(Z_Value*Z_Value)))(c) theta=atan(X_Value/sqrt((Y_Value)+(Z_Value*Z_Value)))(d) theta=atan(X_Value/sqrt((Y_Value*Y_Value)+(Z_Value)))I have been asked this question in an online quiz.The above asked question is from ADXL335 Accelerometer Sensor in portion Interfacing of Sensors, Actuators, and Other Modules of Arduino |
|
Answer» Right option is (a) theta=atan(X_Value/sqrt((Y_Value*Y_Value)+(Z_Value*Z_Value))) |
|