added debounce timer to button sensor

OBS removed sensor changed notification when button released!
This commit is contained in:
fros4943 2006-10-05 11:51:51 +00:00
parent f3e5126a8c
commit 87219929b7

View file

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: button-sensor.c,v 1.1 2006/08/21 12:11:19 fros4943 Exp $
* $Id: button-sensor.c,v 1.2 2006/10/05 11:51:51 fros4943 Exp $
*/
#include "lib/sensors.h"
@ -35,6 +35,7 @@
const struct simInterface button_interface;
const struct sensors_sensor button_sensor;
static struct timer debouncetimer;
// COOJA variables
char simButtonChanged;
@ -46,6 +47,7 @@ static void
init(void)
{
simButtonIsActive = 1;
timer_set(&debouncetimer, 0);
}
/*---------------------------------------------------------------------------*/
static int
@ -75,7 +77,7 @@ active(void)
static unsigned int
value(int type)
{
return simButtonIsDown;
return simButtonIsDown || !timer_expired(&debouncetimer);
}
/*---------------------------------------------------------------------------*/
static int
@ -94,9 +96,12 @@ static void
doInterfaceActionsBeforeTick(void)
{
// Check if button value has changed
if (simButtonChanged && simButtonIsActive) {
sensors_changed(&button_sensor);
simButtonChanged = 0;
if (simButtonChanged && simButtonIsActive && simButtonIsDown) {
if(timer_expired(&debouncetimer)) {
timer_set(&debouncetimer, CLOCK_SECOND / 4);
sensors_changed(&button_sensor);
simButtonChanged = 0;
}
}
}
/*---------------------------------------------------------------------------*/