From 3c217f88a66a94d62c0bbb3af0293ca61393c70b Mon Sep 17 00:00:00 2001 From: pgp Date: Tue, 15 Dec 2020 12:21:33 +0100 Subject: [PATCH] add stop_moteur & stop_compteur --- src/main.cpp | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 96f9621..0c577f5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -161,8 +161,12 @@ void rtc_init() { } -//void stop_compteur { -//} +void stop_compteur { + /*Pause counter*/ + pcnt_counter_pause(PCNT_TEST_UNIT); + /*Reset counter value*/ + pcnt_counter_clear(PCNT_TEST_UNIT); +} //void start_wifiAP { //} @@ -212,7 +216,7 @@ void vigie () { } if ( etat_bouton_wifi == HIGH && sem_wifi == true && millis() - wifi_minuteur > 5000 ) { stop_moteur(); - //stop_compteur(); + stop_compteur(); //start_wifiAP(); } } @@ -239,8 +243,8 @@ void setup() { } void loop (){ - // vigie (); - //pid (); - //compte_tour (); + vigie(); + pid(); + compte_tour(); delay(10000); }