-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBouton1.ino
74 lines (60 loc) · 1.17 KB
/
Bouton1.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/***********************/
/* MAE DEBOUNCE */
/***********************/
/* Swano Lab - 2017 */
/***********************/
#include "boutons.h"
int iBp1;
int iBP1_DebounceCounter;
int iBP1_EtatDebounce;
void BP1_Etat_Debounce_Relache(void)
{
iBp1 = digitalRead(BP1_PIN);
if (iBp1 == HIGH)
{
iBP1_EtatDebounce = ETAT_DEBOUNCING;
}
}
void BP1_Etat_Debounce_Debouncing(void)
{
iBP1_DebounceCounter++;
if ( iBP1_DebounceCounter == DEBOUNCE_TIME )
{
iBP1_EtatDebounce = ETAT_APPUYE;
iBP1_DebounceCounter = 0;
}
}
void BP1_Etat_Debounce_Appuye(void)
{
iBp1 = digitalRead(BP1_PIN);
if (iBp1 == LOW)
{
iBP1_EtatDebounce = ETAT_RELACHE;
}
}
bool BP1_BpEstIlAppuye(void)
{
return (iBP1_EtatDebounce == ETAT_APPUYE);
}
void BP1_MAE_Setup(void)
{
pinMode(BP1_PIN, INPUT);
iBp1 = LOW;
iBP1_DebounceCounter =0;
iBP1_EtatDebounce = ETAT_RELACHE;
}
void BP1_MAE(void)
{
if (iBP1_EtatDebounce == ETAT_RELACHE)
{
BP1_Etat_Debounce_Relache();
}
if (iBP1_EtatDebounce == ETAT_DEBOUNCING)
{
BP1_Etat_Debounce_Debouncing();
}
if (iBP1_EtatDebounce == ETAT_APPUYE)
{
BP1_Etat_Debounce_Appuye();
}
}