6 Commits

Author SHA1 Message Date
9a77d3163f Merge pull request 'docs: Doxy-API-et-diagramme-API' (#25) from docs/Doxy-API-et-diagramme-API into master
Reviewed-on: https://gitea.cb85.software/Epitech-T-DEV-811/T-DEV-811/pulls/25
Reviewed-by: nico <nicolas.sansd@gmail.com>
Reviewed-by: Guska <gildas.gonzalez@epitech.eu>
2023-04-11 13:53:42 +02:00
b921edd04b typo 2023-04-04 10:57:46 +02:00
62651ca606 docs(iot): create diagram class 2023-04-04 10:56:27 +02:00
aba69c8181 fix: doc and typo 2023-04-04 10:55:39 +02:00
ab94d9fbf3 fix: typo 2023-04-04 10:45:44 +02:00
70f18faee5 feat: doxyfile 2023-04-04 10:41:45 +02:00
9 changed files with 2776 additions and 32 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
IOT/docs/doxygen output/*

View File

@ -15,7 +15,6 @@ build_flags =
; DO NOT TOUCH --- END ; DO NOT TOUCH --- END
-D API_HOST=\"iot.epi.cb85.software\" -D API_HOST=\"iot.epi.cb85.software\"
-D DHTTYPE=\"DHT11\"
-D DHTPIN=2
-D EXAMPLE_NUMBER=69

2740
IOT/docs/Doxyfile Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,24 @@
@startuml Class Diagram
Class API {
- user: String
- password: String
- serveurHost: String
- https: bool
- client: WiFiEspClient*
- connect(): bool
+ API(user: String, password: String, host: String, https: bool = true)
+ wifiBegin(wifiId: String, wifiPass: String, espSerial: Stream*): bool
+ sendValue(val: String, pouvelleID: String, unit: String, full: bool): bool
}
Class Program {
+ Program()
+ setup()
}
@enduml

View File

@ -1,8 +1,6 @@
#ifndef PROGRAM_H #ifndef PROGRAM_H
#define PROGRAM_H #define PROGRAM_H
#include "DHT.h"
class Program{ class Program{
public: public:
/** /**
@ -19,11 +17,5 @@ public:
private: private:
/* data */ /* data */
/**
* @brief capteur humi/temp
*
*/
DHT *dht;
}; };
#endif #endif

View File

@ -21,25 +21,25 @@ public:
/** /**
* @brief Initialise la connection Wifi de l'esp * @brief Initialise la connection Wifi de l'esp
* *
* @param wifiId nom du wifi * @param[in] wifiId nom du wifi
* @param wifiPass mot de passe du wifi * @param[in] wifiPass mot de passe du wifi
* @param espSerial port serie de l'esp (hard ou soft) * @param[in] espSerial port serie de l'esp (hard ou soft)
* @return true la connexion a bien fonctionner * @return true la connexion a bien fonctionner
* @return false erreur a la connexion * @return false erreur a la connexion
*/ */
bool wifiBegin(String wifiId, String wifiPass, Stream* espSerial); bool wifiBegin(String wifiID, String wifiPass, Stream* espSerial);
/** /**
* @brief envoie la valeur d'un capteur de poubelle à l'api * @brief envoie la valeur d'un capteur de poubelle à l'api
* *
* @param val valeur du capteur * @param[in] val valeur du capteur
* @param poubelleID ID de la poubelle * @param[in] poubelleID ID de la poubelle
* @param unit uniter de mesure du capteur *(ex: g, cm, degree,...) * @param[in] unit uniter de mesure du capteur *(ex: g, cm, degree,...)
* @param full poubelle est considéré comme pleine * @param[in] full poubelle est considéré comme pleine
* @return true la valeur s'est bien envoyer * @return true la valeur s'est bien envoyer
* @return false il y a une erreur durran l'envoie * @return false il y a une erreur durran l'envoie
*/ */
bool sendValute(String val, String poubelleID, String unit, bool full); bool sendValue(String val, String poubelleID, String unit, bool full);
private: private:

View File

@ -81,7 +81,7 @@ bool API::connect(){
return sortie; return sortie;
} }
bool API::sendValute(String val, String poubelleID, String valUnit, bool full){ bool API::sendValue(String val, String poubelleID, String valUnit, bool full){
JSONVar data; JSONVar data;
data["value"] = val; data["value"] = val;
data["trash_id"] = poubelleID; data["trash_id"] = poubelleID;

View File

@ -38,8 +38,6 @@ monitor_flags =
lib_deps = lib_deps =
bportaluri/WiFiEsp@^2.2.2 ; gestion des commande 'AT' de l'esp01 bportaluri/WiFiEsp@^2.2.2 ; gestion des commande 'AT' de l'esp01
arduino-libraries/Arduino_JSON@^0.2.0 ; gestion des json arduino-libraries/Arduino_JSON@^0.2.0 ; gestion des json
adafruit/DHT sensor library@^1.4.4 ; DHT11 lib
adafruit/Adafruit Unified Sensor@^1.1.9 ; adafruit sensor lib (required by DHT11)
; example: ; example:
; erropix/ESP32 AnalogWrite@^0.2 ; erropix/ESP32 AnalogWrite@^0.2

View File

@ -2,19 +2,9 @@
Program::Program(){ Program::Program(){
// INIT OBJ
this->dht = new DHT(DHTPIN, DHTTYPE);
Serial.begin(MONITOR_SPEED);
dht->begin();
} }
void Program::loop(){ void Program::loop(){
//TODO: envoyer les infos des capteur par la suite
Serial.println("Temperature = " + String(dht->readTemperature())+" °C");
Serial.println("Humidite = " + String(dht->readHumidity())+" %");
delay(1000);
} }