Contiki 2.6
|
00001 00002 #include "dev/button-sensor.h" 00003 00004 const struct sensors_sensor button_sensor; 00005 00006 /*---------------------------------------------------------------------------*/ 00007 void 00008 button_press(void) 00009 { 00010 sensors_changed(&button_sensor); 00011 } 00012 /*---------------------------------------------------------------------------*/ 00013 static int 00014 value(int type) 00015 { 00016 return 0; 00017 } 00018 /*---------------------------------------------------------------------------*/ 00019 static int 00020 configure(int type, int value) 00021 { 00022 return 0; 00023 } 00024 /*---------------------------------------------------------------------------*/ 00025 static int 00026 status(int type) 00027 { 00028 return 0; 00029 } 00030 /*---------------------------------------------------------------------------*/ 00031 SENSORS_SENSOR(button_sensor, BUTTON_SENSOR, 00032 value, configure, status);