Home
last modified time | relevance | path

Searched refs:aZ (Results 1 – 6 of 6) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/examples/c++/
Dadxl335.cxx59 float aX, aY, aZ; in main() local
64 accel->acceleration(&aX, &aY, &aZ); in main()
67 cout << "Acceleration: Z: " << aZ << "g" << endl; in main()
/hardware/bsp/intel/peripheral/libupm/examples/python/
Dadxl335.py59 aZ = upmAdxl335.new_floatPointer() variable
68 myAnalogAccel.acceleration(aX, aY, aZ)
73 upmAdxl335.floatPointer_value(aZ))
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
Dadxl335.js57 var aZ = new analogGyro3Axis.new_floatPointer(); variable
70 myAnalogGyro3Axis.acceleration(aX, aY, aZ);
76 analogGyro3Axis.floatPointer_value(aZ) + "g";
/hardware/bsp/intel/peripheral/libupm/src/h3lis331dl/
Djavaupm_h3lis331dl.i7 %apply float *OUTPUT { float *aX, float *aY, float *aZ };
Dh3lis331dl.h577 void getAcceleration(float *aX, float *aY, float *aZ);
Dh3lis331dl.cxx576 void H3LIS331DL::getAcceleration(float *aX, float *aY, float *aZ) in getAcceleration() argument
582 *aZ = float(m_rawZ - m_adjZ) * gains; in getAcceleration()