Searched refs:aX (Results 1 – 6 of 6) sorted by relevance
/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
D | adxl335.cxx | 59 float aX, aY, aZ; in main() local 64 accel->acceleration(&aX, &aY, &aZ); in main() 65 cout << "Acceleration: X: " << aX << "g" << endl; in main()
|
/hardware/bsp/intel/peripheral/libupm/examples/python/ |
D | adxl335.py | 57 aX = upmAdxl335.new_floatPointer() variable 68 myAnalogAccel.acceleration(aX, aY, aZ) 71 "Acceleration: Z: {2}g").format(upmAdxl335.floatPointer_value(aX),
|
/hardware/bsp/intel/peripheral/libupm/examples/javascript/ |
D | adxl335.js | 55 var aX = new analogGyro3Axis.new_floatPointer(); variable 70 myAnalogGyro3Axis.acceleration(aX, aY, aZ); 72 analogGyro3Axis.floatPointer_value(aX) + "g\n" +
|
/hardware/bsp/intel/peripheral/libupm/src/h3lis331dl/ |
D | javaupm_h3lis331dl.i | 7 %apply float *OUTPUT { float *aX, float *aY, float *aZ };
|
D | h3lis331dl.h | 577 void getAcceleration(float *aX, float *aY, float *aZ);
|
D | h3lis331dl.cxx | 576 void H3LIS331DL::getAcceleration(float *aX, float *aY, float *aZ) in getAcceleration() argument 580 *aX = float(m_rawX - m_adjX) * gains; in getAcceleration()
|