tests
This commit is contained in:
parent
d8801898d6
commit
a64ff3f0cf
17
src/main.cpp
17
src/main.cpp
|
@ -73,6 +73,22 @@ const char *ssid = "IFV-Sporix"; // SSID
|
|||
const char *password = "12345678"; // PASSWORD, 8 caractères minimum
|
||||
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();
|
||||
|
||||
////////////////////////////
|
||||
/// FONCTION CODE ERREUR ///
|
||||
////////////////////////////
|
||||
|
@ -97,7 +113,6 @@ void errorCode(int codeNumber) {
|
|||
|
||||
void start_moteur() {
|
||||
ESP32PWM::allocateTimer(2);
|
||||
delay(500);
|
||||
moteur.setPeriodHertz(50);
|
||||
moteur.attach(moteurPin, minUs, maxUs);
|
||||
delay(15);
|
||||
|
|
Loading…
Reference in a new issue