test
This commit is contained in:
parent
2e7efbe527
commit
626ef46ab3
|
@ -35,7 +35,7 @@ int pptr = 2; //nombre de pulsations par tour d'hélice
|
||||||
/////////////////////////////////
|
/////////////////////////////////
|
||||||
/*NUMÉRO DE SÉRIE DE L'APPAREIL*/
|
/*NUMÉRO DE SÉRIE DE L'APPAREIL*/
|
||||||
/////////////////////////////////
|
/////////////////////////////////
|
||||||
char numero_capteur[5] = "0001";
|
char numero_capteur[5]="0001";
|
||||||
|
|
||||||
///////////////////////////
|
///////////////////////////
|
||||||
/* DÉFINITIONS DE LA RTC */
|
/* DÉFINITIONS DE LA RTC */
|
||||||
|
@ -73,7 +73,7 @@ int bouton_wifi = 2; // pin du bouton wifi
|
||||||
bool sem_wifi = false; //sémaphore du minuteur du bouton wifi
|
bool sem_wifi = false; //sémaphore du minuteur du bouton wifi
|
||||||
unsigned long wifi_minuteur = 0; // minuteur pour l'appui long sur le bouton wifi
|
unsigned long wifi_minuteur = 0; // minuteur pour l'appui long sur le bouton wifi
|
||||||
bool etat_bouton_wifi;
|
bool etat_bouton_wifi;
|
||||||
int tempo_bouton_wifi = 5000; //temps d'appui en millisecondes pour arrêter le capteur et passer en mode wifi
|
int tempo_bouton_wifi = 2500; //temps d'appui en millisecondes pour arrêter le capteur et passer en mode wifi
|
||||||
|
|
||||||
///////////////////////////////////////
|
///////////////////////////////////////
|
||||||
/* DÉFINITIONS DU POINT D'ACCES WIFI */
|
/* DÉFINITIONS DU POINT D'ACCES WIFI */
|
||||||
|
@ -320,7 +320,7 @@ void sd_init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
now = rtc.now();
|
now = rtc.now();
|
||||||
char date_format[16] = "DDhhmm";
|
char date_format[] = "DDhhmm";
|
||||||
char *date = now.toString(date_format);
|
char *date = now.toString(date_format);
|
||||||
strcat(fichier,date);
|
strcat(fichier,date);
|
||||||
char entete[] = "# YY-MM-DD:hh:mm:ss Vrot en tr/min \n";
|
char entete[] = "# YY-MM-DD:hh:mm:ss Vrot en tr/min \n";
|
||||||
|
@ -359,9 +359,6 @@ void scribe_sd (){
|
||||||
pcnt_counter_resume(PCNT_TEST_UNIT);
|
pcnt_counter_resume(PCNT_TEST_UNIT);
|
||||||
start_chrono_scribe = millis();
|
start_chrono_scribe = millis();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue