ajout d'un main.h et tableau de codes d'erreur dans le README

This commit is contained in:
pgp 2021-01-30 07:54:45 +01:00
parent 85c3324517
commit cd0fa64be8
3 changed files with 39 additions and 17 deletions

View file

@ -1,3 +1,22 @@
# IFV_esp32 # IFV_esp32
https://projets.cohabit.fr/redmine/projects/capteursdesporesifv/wiki/Wiki https://projets.cohabit.fr/redmine/projects/capteursdesporesifv/wiki/Wiki
//////////////////
///CODES ERREUR///
//////////////////
_____________________________________________________________
|flashs| message
|------------------------------------------------------------
| 1 |
|------------------------------------------------------------
| 2 | Echec d'ouverture du fichier data pour écriture
|------------------------------------------------------------
| 3 |
|------------------------------------------------------------
| 4 |
|------------------------------------------------------------
| 5 |
|------------------------------------------------------------
| 6 |
|------------------------------------------------------------

View file

@ -8,6 +8,7 @@
#include "driver/pcnt.h" #include "driver/pcnt.h"
#include <WiFi.h> #include <WiFi.h>
#include <ESPAsyncWebServer.h> #include <ESPAsyncWebServer.h>
#include "main.h"
//#include <time.h> //#include <time.h>
///////////////////////////// /////////////////////////////
@ -73,21 +74,7 @@ const char *ssid = "IFV-Sporix"; // SSID
const char *password = "12345678"; // PASSWORD, 8 caractères minimum const char *password = "12345678"; // PASSWORD, 8 caractères minimum
WiFiServer server(80); // port du serveur WiFiServer server(80); // port du serveur
//////////////////
/// PROTOTYPES ///
//////////////////
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 /// /// FONCTION CODE ERREUR ///
@ -296,7 +283,7 @@ void testFileIO(fs::FS &fs, const char * path){
void sd_init() { void sd_init() {
if(!SD.begin()){ if(!SD.begin()){
Serial.println("Card Mount Failed"); Serial.println("Card Mount Failed");
errorCode(2); errorCode(3);
return; return;
} }
uint8_t cardType = SD.cardType(); uint8_t cardType = SD.cardType();

16
src/main.h Normal file
View file

@ -0,0 +1,16 @@
/* header */
//////////////////
/// PROTOTYPES ///
//////////////////
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);