MotionSensor.h 169 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 #ifndef _MOTION_SENSOR_H_ #define _MOTION_SENSOR_H_ #define YAW 0 #define PITCH 1 #define ROLL 2 #define DIM 3 int ms_open(); int ms_update(); int ms_close(); #endif