changements compte-tour & scribe
This commit is contained in:
parent
309a4cedb2
commit
3c6b22d123
23
src/main.cpp
23
src/main.cpp
|
@ -51,7 +51,7 @@ DateTime now{rtc.now()};
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
/* DÉFINITIONS DE LA CARTE SD */
|
/* DÉFINITIONS DE LA CARTE SD */
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
unsigned long intervalle_d_ecriture = 60000; // durée entre deux écritures sur la carte SD en millisecondes
|
unsigned long inter_ecriture = 60000; // durée entre deux écritures sur la carte SD en millisecondes
|
||||||
char horodatage[12]; //création du tableau pour contenir l'horodatage
|
char horodatage[12]; //création du tableau pour contenir l'horodatage
|
||||||
char fichier[] = "/"; //tableau pour le nom de fichier
|
char fichier[] = "/"; //tableau pour le nom de fichier
|
||||||
|
|
||||||
|
@ -142,7 +142,7 @@ void stop_moteur() {
|
||||||
|
|
||||||
void start_compteur() {
|
void start_compteur() {
|
||||||
|
|
||||||
//esp_err_t error;
|
esp_err_t error;
|
||||||
Serial.println("Initialisation du compteur");
|
Serial.println("Initialisation du compteur");
|
||||||
|
|
||||||
pcnt_config_t pcnt_config = {
|
pcnt_config_t pcnt_config = {
|
||||||
|
@ -180,7 +180,7 @@ void compte_tour() {
|
||||||
sema_compte_tour = true;
|
sema_compte_tour = true;
|
||||||
depart_compte_tour = millis();
|
depart_compte_tour = millis();
|
||||||
}
|
}
|
||||||
int offset = ( millis() - depart_compte_tour );
|
int offset = (millis() - depart_compte_tour );
|
||||||
|
|
||||||
if (offset >= intervalle_compte_tour && sema_compte_tour == true){
|
if (offset >= intervalle_compte_tour && sema_compte_tour == true){
|
||||||
//chrono_compte_tour = millis()- start_chrono_scribe;
|
//chrono_compte_tour = millis()- start_chrono_scribe;
|
||||||
|
@ -188,12 +188,12 @@ void compte_tour() {
|
||||||
int diff_count = count - old_count;
|
int diff_count = count - old_count;
|
||||||
vRotReel = (60000*diff_count/(pptr*offset)); //vitesse en tours par min (4 pulsations /tour, 2 montantes, 2 descendantes)
|
vRotReel = (60000*diff_count/(pptr*offset)); //vitesse en tours par min (4 pulsations /tour, 2 montantes, 2 descendantes)
|
||||||
old_count = count;
|
old_count = count;
|
||||||
//Serial.println("count =");
|
Serial.println("count =");
|
||||||
//Serial.println(count);
|
Serial.println(count);
|
||||||
//Serial.println("chrono_compte_tour=");
|
//Serial.println("chrono_compte_tour=");
|
||||||
//Serial.println(chrono_compte_tour);
|
//Serial.println(chrono_compte_tour);
|
||||||
//Serial.println("vRrotReel=");
|
Serial.println("vRrotReel=");
|
||||||
//Serial.println(vRotReel);
|
Serial.println(vRotReel);
|
||||||
gaz_moteur();// ajustement des gaz en fonction de la vitesse mesurée
|
gaz_moteur();// ajustement des gaz en fonction de la vitesse mesurée
|
||||||
sema_compte_tour = false;
|
sema_compte_tour = false;
|
||||||
}
|
}
|
||||||
|
@ -339,12 +339,11 @@ void scribe_sd (){
|
||||||
start_chrono_scribe = millis();
|
start_chrono_scribe = millis();
|
||||||
}
|
}
|
||||||
chrono_scribe = millis() - start_chrono_scribe;
|
chrono_scribe = millis() - start_chrono_scribe;
|
||||||
|
Serial.println("sem_scribe=");
|
||||||
|
Serial.println(sem_scribe);
|
||||||
|
|
||||||
//Serial.println("sem_scribe=");
|
if (chrono_scribe >= inter_ecriture ){
|
||||||
//Serial.println(sem_scribe);
|
//Serial.println("balise scribe");
|
||||||
|
|
||||||
if ( sem_scribe == true && chrono_scribe >= intervalle_d_ecriture ) {
|
|
||||||
Serial.println("balise scribe");
|
|
||||||
char timestamp[] = "YY-MM-DD-hh:mm:ss";
|
char timestamp[] = "YY-MM-DD-hh:mm:ss";
|
||||||
char *horodatage = now.toString(timestamp);
|
char *horodatage = now.toString(timestamp);
|
||||||
char buffer[64];
|
char buffer[64];
|
||||||
|
|
Loading…
Reference in a new issue