ajout d'un main.h et tableau de codes d'erreur dans le README
This commit is contained in:
parent
85c3324517
commit
cd0fa64be8
21
README.md
21
README.md
|
@ -1,3 +1,22 @@
|
|||
# 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 |
|
||||
|------------------------------------------------------------
|
19
src/main.cpp
19
src/main.cpp
|
@ -8,6 +8,7 @@
|
|||
#include "driver/pcnt.h"
|
||||
#include <WiFi.h>
|
||||
#include <ESPAsyncWebServer.h>
|
||||
#include "main.h"
|
||||
//#include <time.h>
|
||||
|
||||
/////////////////////////////
|
||||
|
@ -73,21 +74,7 @@ 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);
|
||||
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 ///
|
||||
|
@ -296,7 +283,7 @@ void testFileIO(fs::FS &fs, const char * path){
|
|||
void sd_init() {
|
||||
if(!SD.begin()){
|
||||
Serial.println("Card Mount Failed");
|
||||
errorCode(2);
|
||||
errorCode(3);
|
||||
return;
|
||||
}
|
||||
uint8_t cardType = SD.cardType();
|
||||
|
|
16
src/main.h
Normal file
16
src/main.h
Normal 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);
|
Loading…
Reference in a new issue