14 lines
195 B
C
14 lines
195 B
C
|
#ifndef _MMA8653_H
|
||
|
#define _MMA8653_H
|
||
|
|
||
|
#include "light_ws2812.h"
|
||
|
|
||
|
struct axl_result {
|
||
|
int x, y, z;
|
||
|
};
|
||
|
|
||
|
int mma8653_init();
|
||
|
int mma8653_get_measurements(struct axl_result *measurements);
|
||
|
|
||
|
#endif
|