mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-04 13:06:38 +00:00
13 lines
225 B
C
13 lines
225 B
C
#ifndef __BUTTON_SENSOR_H__
|
|
#define __BUTTON_SENSOR_H__
|
|
|
|
#include "lib/sensors.h"
|
|
|
|
extern const struct sensors_sensor button_sensor;
|
|
|
|
#define BUTTON_SENSOR "Button"
|
|
|
|
void button_press(void);
|
|
|
|
#endif /* __BUTTON_SENSOR_H__ */
|