ajout de l'écriture du numero de série du capteur dans la carte sd
This commit is contained in:
parent
011ee863cc
commit
85c3324517
33
src/main.cpp
33
src/main.cpp
|
@ -26,7 +26,7 @@ int refresh_compte_tour = 500; // durée entre deux mesures du compte-tour en ms
|
||||||
/////////////////////////////////
|
/////////////////////////////////
|
||||||
/*NUMÉRO DE SÉRIE DE L'APPAREIL*/
|
/*NUMÉRO DE SÉRIE DE L'APPAREIL*/
|
||||||
/////////////////////////////////
|
/////////////////////////////////
|
||||||
int numero_capteur = 0001;
|
char numero_capteur[] = "capteur n°0001\n";
|
||||||
|
|
||||||
///////////////////////////
|
///////////////////////////
|
||||||
/* DÉFINITIONS DE LA RTC */
|
/* DÉFINITIONS DE LA RTC */
|
||||||
|
@ -76,18 +76,18 @@ WiFiServer server(80); // port du serveur
|
||||||
//////////////////
|
//////////////////
|
||||||
/// PROTOTYPES ///
|
/// PROTOTYPES ///
|
||||||
//////////////////
|
//////////////////
|
||||||
void vigie_Wifi();
|
void vigie_Wifi(void);
|
||||||
void wifi_AP();
|
void wifi_AP(void);
|
||||||
void start_wifiAP();
|
void start_wifiAP(void);
|
||||||
void rtc_init();
|
void rtc_init(void);
|
||||||
void scribe_sd ();
|
void scribe_sd (void);
|
||||||
void sd_init();
|
void sd_init(void);
|
||||||
void compte_tour();
|
void compte_tour(void);
|
||||||
void stop_compteur();
|
void stop_compteur(void);
|
||||||
void start_compteur();
|
void start_compteur(void);
|
||||||
void stop_moteur();
|
void stop_moteur(void);
|
||||||
void gaz_moteur();
|
void gaz_moteur(void);
|
||||||
void start_moteur();
|
void start_moteur(void);
|
||||||
|
|
||||||
////////////////////////////
|
////////////////////////////
|
||||||
/// FONCTION CODE ERREUR ///
|
/// FONCTION CODE ERREUR ///
|
||||||
|
@ -145,8 +145,6 @@ void stop_moteur() {
|
||||||
|
|
||||||
void start_compteur() {
|
void start_compteur() {
|
||||||
|
|
||||||
//esp_err_t error;
|
|
||||||
|
|
||||||
Serial.println("Initialisation du compteur");
|
Serial.println("Initialisation du compteur");
|
||||||
|
|
||||||
pcnt_config_t pcnt_config = {
|
pcnt_config_t pcnt_config = {
|
||||||
|
@ -314,8 +312,9 @@ void sd_init() {
|
||||||
char date_format[] = "MM-DD-hh-mm";
|
char date_format[] = "MM-DD-hh-mm";
|
||||||
char *date = now.toString(date_format);
|
char *date = now.toString(date_format);
|
||||||
strcat(fichier,date);
|
strcat(fichier,date);
|
||||||
char entete[] = "# fichier de data \n";
|
char entete[] = "# YY-MM-DD:hh:mm:ss Vrot en tr/min \n";
|
||||||
writeFile(SD, fichier, entete);
|
writeFile(SD, fichier, numero_capteur);
|
||||||
|
appendFile(SD, fichier, entete);
|
||||||
}
|
}
|
||||||
|
|
||||||
void scribe_sd (){
|
void scribe_sd (){
|
||||||
|
|
Loading…
Reference in a new issue