-
Notifications
You must be signed in to change notification settings - Fork 0
/
SauvegardeSurSD.ino
64 lines (54 loc) · 1.73 KB
/
SauvegardeSurSD.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
/*---------------------------------------------------------------------------------------------*/
/* SORTIE DE L'ECRAN DE SAUVEGARDE SEUILS */
/*---------------------------------------------------------------------------------------------*/
void SaveSeuils2File(void)
{
WriteSeuilsToFile();
GotoDeclenche();
}
void RecallSeuils(void)
{
ReadSeuilsFromFile();
GotoDeclenche();
}
/*---------------------------------------------------------------------------------------------*/
/* SORTIE DE L'ECRAN DE SAUVEGARDE HYSTERESIS */
/*---------------------------------------------------------------------------------------------*/
void SaveHyster2File(void)
{
WriteHysterToFile();
GotoDeclenche();
}
void RecallHyster(void)
{
ReadHysterFromFile();
GotoDeclenche();
}
/*---------------------------------------------------------------------------------------------*/
/* SORTIE DE L'ECRAN DE SAUVEGARDE DATE */
/*---------------------------------------------------------------------------------------------*/
void SaveDate(void)
{
WriteTime();
GotoSetDateHeure();
}
void RecallDate(void)
{
Serial.println("Recall");
ReadTime();
GotoSetDateHeure();
}
/*---------------------------------------------------------------------------------------------*/
/* SORTIE DE L'ECRAN DE SAUVEGARDE HEURE */
/*---------------------------------------------------------------------------------------------*/
void SaveTime(void)
{
WriteTime();
GotoSetDateHeure();
}
void RecallTime(void)
{
Serial.println("Recall");
ReadTime();
GotoSetDateHeure();
}