Contiki 3.x
button-sensor.c
1 
2 #include "dev/button-sensor.h"
3 
4 const struct sensors_sensor button_sensor;
5 
6 /*---------------------------------------------------------------------------*/
7 void
8 button_press(void)
9 {
10  sensors_changed(&button_sensor);
11 }
12 /*---------------------------------------------------------------------------*/
13 static int
14 value(int type)
15 {
16  return 0;
17 }
18 /*---------------------------------------------------------------------------*/
19 static int
20 configure(int type, int value)
21 {
22  return 0;
23 }
24 /*---------------------------------------------------------------------------*/
25 static int
26 status(int type)
27 {
28  return 0;
29 }
30 /*---------------------------------------------------------------------------*/
31 SENSORS_SENSOR(button_sensor, BUTTON_SENSOR,
32  value, configure, status);
const struct sensors_sensor button_sensor
Copyright (c) 2014, Analog Devices, Inc.
Definition: button-sensor.c:44
static int value(int type, nrf_drv_gpiote_pin_t pin)
Return current state of a button.