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*/
|
||||
/////////////////////////////////
|
||||
int numero_capteur = 0001;
|
||||
char numero_capteur[] = "capteur n°0001\n";
|
||||
|
||||
///////////////////////////
|
||||
/* DÉFINITIONS DE LA RTC */
|
||||
|
@ -76,18 +76,18 @@ WiFiServer server(80); // port du serveur
|
|||
//////////////////
|
||||
/// PROTOTYPES ///
|
||||
//////////////////
|
||||
void vigie_Wifi();
|
||||
void wifi_AP();
|
||||
void start_wifiAP();
|
||||
void rtc_init();
|
||||
void scribe_sd ();
|
||||
void sd_init();
|
||||
void compte_tour();
|
||||
void stop_compteur();
|
||||
void start_compteur();
|
||||
void stop_moteur();
|
||||
void gaz_moteur();
|
||||
void start_moteur();
|
||||
void vigie_Wifi(void);
|
||||
void wifi_AP(void);
|
||||
void start_wifiAP(void);
|
||||
void rtc_init(void);
|
||||
void scribe_sd (void);
|
||||
void sd_init(void);
|
||||
void compte_tour(void);
|
||||
void stop_compteur(void);
|
||||
void start_compteur(void);
|
||||
void stop_moteur(void);
|
||||
void gaz_moteur(void);
|
||||
void start_moteur(void);
|
||||
|
||||
////////////////////////////
|
||||
/// FONCTION CODE ERREUR ///
|
||||
|
@ -145,8 +145,6 @@ void stop_moteur() {
|
|||
|
||||
void start_compteur() {
|
||||
|
||||
//esp_err_t error;
|
||||
|
||||
Serial.println("Initialisation du compteur");
|
||||
|
||||
pcnt_config_t pcnt_config = {
|
||||
|
@ -314,8 +312,9 @@ void sd_init() {
|
|||
char date_format[] = "MM-DD-hh-mm";
|
||||
char *date = now.toString(date_format);
|
||||
strcat(fichier,date);
|
||||
char entete[] = "# fichier de data \n";
|
||||
writeFile(SD, fichier, entete);
|
||||
char entete[] = "# YY-MM-DD:hh:mm:ss Vrot en tr/min \n";
|
||||
writeFile(SD, fichier, numero_capteur);
|
||||
appendFile(SD, fichier, entete);
|
||||
}
|
||||
|
||||
void scribe_sd (){
|
||||
|
|
Loading…
Reference in a new issue