Contiki 2.5
acc-sensor.h
1 #ifndef __ACC_SENSOR_H__
2 #define __ACC_SENSOR_H__
3 
4 #include "lib/sensors.h"
5 
6 extern const struct sensors_sensor acc_sensor;
7 
8 #define X_ACC 0
9 #define Y_ACC 1
10 #define Z_ACC 2
11 
12 
13 #endif /* __ACC-SENSOR_H__ */