materiels:capteurs:gaz:gaz

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
materiels:capteurs:gaz:gaz [2024/06/26 16:54] – [2.3 SCD4X - CO2, T, (P) et RH] philmateriels:capteurs:gaz:gaz [2024/07/30 17:35] (Version actuelle) – [2.3 SCD4X - CO2, T, (P), RH] phil
Ligne 94: Ligne 94:
 </pane> </pane>
 </tabs> </tabs>
 +
 +\\
  
 ==== 2. Capteurs de CO2 ==== ==== 2. Capteurs de CO2 ====
Ligne 164: Ligne 166:
     * //**Connexion** à un shield// <html><a href="https://webge.fr/doc/wikis/pdf/TinkerkitV2.pdf" target="_blank">Tinkerkit v2</a></html>. {{ :materiels:capteurs:mg811_2.jpg?nolink&600 |}}     * //**Connexion** à un shield// <html><a href="https://webge.fr/doc/wikis/pdf/TinkerkitV2.pdf" target="_blank">Tinkerkit v2</a></html>. {{ :materiels:capteurs:mg811_2.jpg?nolink&600 |}}
  
-{{ :materiels:capteurs:distance:arduinoico.png?nolink&50|}} +{{ :materiels:capteurs:distance:arduinoico.png?nolink&40|}} 
-    * // **Exemple** pour tester le capteur//  +    * // **Exemple** pour tester le capteur// [<html><href="https://webge.fr/doc/wikis/code/Arduino/ARD_Uno_MG811.zip"><b>Télécharger</b></a></html>]
- +
-<code cpp *.cpp> +
-/*******************Demo for MG-811 Gas Sensor Module V1.1***************************** +
-Author:  Tiequan Shao: tiequan.shao@sandboxelectronics.com +
-         Peng Wei:     peng.wei@sandboxelectronics.com +
- +
-Lisence: Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0) +
- +
-Note:    This piece of source code is supposed to be used as demostration ONLY. More +
-         sophisticated calibration is required for industrial field application.  +
- +
-                                                    Sandbox Electronics    2012-05-31 +
-************************************************************************************/ +
- +
-/************************Hardware Related Macros************************************/ +
-#define         MG_PIN                       (A0)     //define which analog input channel you are going to use +
-#define         BOOL_PIN                     (2) +
-#define         DC_GAIN                      (8.5)   //define the DC gain of amplifier +
- +
-/***********************Software Related Macros************************************/ +
-#define         READ_SAMPLE_INTERVAL         (50)    //define how many samples you are going to take in normal operation +
-#define         READ_SAMPLE_TIMES            (5)     //define the time interval(in milisecond) between each samples in  +
-                                                     //normal operation +
- +
-/**********************Application Related Macros**********************************/ +
-//These two values differ from sensor to sensor. user should derermine this value. +
-#define         ZERO_POINT_VOLTAGE           (0.220) //define the output of the sensor in volts when the concentration of CO2 is 400PPM +
-#define         REACTION_VOLTGAE             (0.030) //define the voltage drop of the sensor when move the sensor from air into 1000ppm CO2 +
- +
-/*****************************Globals***********************************************/ +
-float           CO2Curve[3]   {2.602,ZERO_POINT_VOLTAGE,(REACTION_VOLTGAE/(2.602-3))};    +
-                                                     //two points are taken from the curve.  +
-                                                     //with these two points, a line is formed which is +
-                                                     //"approximately equivalent" to the original curve. +
-                                                     //data format:{ x, y, slope}; point1: (lg400, 0.324), point2: (lg4000, 0.280)  +
-                                                     //slope = ( reaction voltage ) / (log400 –log1000)  +
- +
-void setup() +
-+
-    Serial.begin(9600);                              //UART setup, baudrate = 9600bps +
-    pinMode(BOOL_PIN, INPUT);                        //set pin to input +
-    digitalWrite(BOOL_PIN, HIGH);                    //turn on pullup resistors +
- +
-   Serial.print("MG-811 Demostration\n");                 +
-+
- +
-void loop() +
-+
-    int percentage; +
-    float volts; +
- +
-    volts = MGRead(MG_PIN); +
-    Serial.print( "SEN0159:" ); +
-    Serial.print(volts);  +
-    Serial.print( "          " ); +
- +
-    percentage = MGGetPercentage(volts,CO2Curve); +
-    Serial.print("CO2:"); +
-    if (percentage == -1) { +
-        Serial.print( "<400" ); +
-    } else { +
-        Serial.print(percentage); +
-    } +
- +
-    Serial.print( "ppm" );   +
-    Serial.print("\n"); +
- +
-    if (digitalRead(BOOL_PIN) ){ +
-        Serial.print( "=====BOOL is HIGH======" ); +
-    } else { +
-        Serial.print( "=====BOOL is LOW======" ); +
-    } +
- +
-    Serial.print("\n"); +
- +
-    delay(500); +
-+
- +
-/*****************************  MGRead ********************************************* +
-Input:   mg_pin - analog channel +
-Output:  output of SEN-000007 +
-Remarks: This function reads the output of SEN-000007 +
-************************************************************************************/  +
-float MGRead(int mg_pin) +
-+
-    int i; +
-    float v=0; +
- +
-    for (i=0;i<READ_SAMPLE_TIMES;i++) { +
-        v += analogRead(mg_pin); +
-        delay(READ_SAMPLE_INTERVAL); +
-    } +
-    v = (v/READ_SAMPLE_TIMES) *5/1024 ; +
-    return v;   +
-+
- +
-/*****************************  MQGetPercentage ********************************** +
-Input:   volts   - SEN-000007 output measured in volts +
-         pcurve  - pointer to the curve of the target gas +
-Output:  ppm of the target gas +
-Remarks: By using the slope and point of the line. The x(logarithmic value of ppm)  +
-         of the line could be derived if y(MG-811 output) is provided. As it is a  +
-         logarithmic coordinate, power of 10 is used to convert the result to non-logarithmic  +
-         value. +
-************************************************************************************/  +
-int  MGGetPercentage(float volts, float *pcurve) +
-+
-   if ((volts/DC_GAIN )>=ZERO_POINT_VOLTAGE) { +
-      return -1; +
-   } else {  +
-      return pow(10, ((volts/DC_GAIN)-pcurve[1])/pcurve[2]+pcurve[0]); +
-   } +
-+
-</code>+
 </pane> </pane>
 <pane id="tab-mg811esp_1"> <pane id="tab-mg811esp_1">
Ligne 296: Ligne 184:
  
 == 2.3.1 Présentation == == 2.3.1 Présentation ==
-  * //**Source**// : <html><a href="https://docs.m5stack.com/en/unit/co2" target="_blank"><b>wiki</b></a></html> M5STACK+  * //**Sources**// : <html><a href="https://docs.m5stack.com/en/unit/co2" target="_blank"><b>wiki</b></a></html> SCD40 M5STACK | <html><a href="https://www.mouser.fr/new/seeed-studio/seeed-studio-grove-scd41-sensor/" target="_blank">Mouser</a></html> SCD41
  
 <callout type="info" icon="true">Module <html><a href="https://m5stack.com/" target="_blank">M5STACK</a></html> combinant des capteurs de CO2 (photoacoustique), de température et d'humidité à connecter à une carte à microcontrôleur via un bus I2C.</callout> <callout type="info" icon="true">Module <html><a href="https://m5stack.com/" target="_blank">M5STACK</a></html> combinant des capteurs de CO2 (photoacoustique), de température et d'humidité à connecter à une carte à microcontrôleur via un bus I2C.</callout>
Ligne 327: Ligne 215:
       * M5STACK SCD40 : 8 g        * M5STACK SCD40 : 8 g 
    
-  * //**Principe**//+  * //**Principe**// {{ :materiels:capteurs:acrobate.gif?nolink&40|}} 
 +    * //**Source**// : What types of NDIR sensors exist and how do they work ? [<html><a href="https://sensirion.com/media/documents/9E7DA521/627C2C8D/CD_IN_SCDxx_Transmissive_and_photoacoustic_NDIR_sensing_D1.pdf" target="_blank"><b>Télécharger</b></a></html>] \\ \\ //"Les capteurs photoacoustiques NDIR détecte la quantité d'énergie absorbée par les molécules de CO2. Les molécules de CO2 absorbent la lumière infrarouge issues de l'émmeteur. Cela augmente les vibrations moléculaires et entraîne une onde de pression à l’intérieur de la chambre de mesure. Plus la concentration de CO2 est élevé, plus la lumière est absorbée, et donc plus l'amplitude de cette onde acoustique augmente. Un microphone mesure cette amplitude, la concentration de CO2 peut ensuite être calculée"//
 {{ :materiels:capteurs:gaz:grove_scd41_hardwareoverview.webp |}} {{ :materiels:capteurs:gaz:grove_scd41_hardwareoverview.webp |}}
  
Ligne 337: Ligne 227:
     * PDF du SCD40 à télécharger <html><a href="https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/docs/datasheet/unit/co2/SCD40.pdf" target="_blank"><b>ici</b></a></html>     * PDF du SCD40 à télécharger <html><a href="https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/docs/datasheet/unit/co2/SCD40.pdf" target="_blank"><b>ici</b></a></html>
     * Schéma à télécharger <html><a href="https://webge.fr/doc/projets/datasheets/SCD40_schematic.png" target="_blank"><b>ici</b></a></html>     * Schéma à télécharger <html><a href="https://webge.fr/doc/projets/datasheets/SCD40_schematic.png" target="_blank"><b>ici</b></a></html>
 +{{ :materiels:capteurs:environnement:iconechronogrammes.png?nolink&50|}}
 +  * //**Chronogrammes**//
 +    * Relevé des signaux du bus I2C faite lors d'une mesure : **CO2=854ppm**, **T=25,90°C** **RH=71,24%**. A télécharger <html><a href="https://webge.fr/doc/wikis/img/Mesures_SCD40.zip" target="_blank"><b>ici</b></a></html>.
 +
 \\ \\
  
Ligne 366: Ligne 260:
 <pane id="tab-scd40duino_2"> <pane id="tab-scd40duino_2">
   * //**Ressources**//   * //**Ressources**//
-    * <html><a href="https://docs.m5stack.com/en/unit/co2" target="_blank"><b>Wiki</b></a></html> M5STACK+    * <html><a href="https://docs.m5stack.com/en/unit/co2" target="_blank"><b>Wiki</b></a></html> M5STACK{{ :materiels:capteurs:intensite:doc.gif?nolink|}} 
 +    * //**Fiche guide**// pour l'étude d'une chaîne d'information comprenant un **SCD40**  <html><a href="https://webge.fr/doc/projets/tsin/0_Fiches guide TSIN/TSIN_FGA_SCD40.zip">[Télécharger]</a></html> 
 +    * //**Connexion**// à une <html><a href="https://wiki.seeedstudio.com/Base_Shield_V2/" target="_blank">Base Shield V2</a></html> montée sur une Arduino Uno {{ :materiels:capteurs:gaz:scd40_arduino.jpg?nolink |}} 
 {{ :materiels:capteurs:distance:arduinoico.png?nolink&40|}} {{ :materiels:capteurs:distance:arduinoico.png?nolink&40|}}
   * //**Exemple** de l'IDE Arduino pour tester le capteur// \\ Dans l'IDE Arduino, sélectionner : Fichier → Exemples -> Sensirion I2C SCD4x -> **exampleUsage**   * //**Exemple** de l'IDE Arduino pour tester le capteur// \\ Dans l'IDE Arduino, sélectionner : Fichier → Exemples -> Sensirion I2C SCD4x -> **exampleUsage**
Ligne 380: Ligne 277:
 \\ \\
  
-=== 2.4 SCD41 - CO2, T, P et RH === 
-{{ :materiels:capteurs:gaz:183176838.jpg?nolink|}} 
-  * //**Documentation**// :  <html><a href="https://www.mouser.fr/new/seeed-studio/seeed-studio-grove-scd41-sensor/" target="_blank">Mouser</a></html> 
  
-<callout type="info" icon="true">Le capteur de CO², de température et d'humidité Seeed Studio Grove SCD41 est un capteur multi-fonctions Sensirion qui mesure simultanément la température, la pression, l'humidité et le CO². Le capteur est basé sur le module SCD41 et peut être utilisé dans les appareils GPS, IoT ou tout autre appareil nécessitant quatre paramètres.</callout> 
- 
-  * //**Distributeur**// : <html><a href="https://www.mouser.fr/new/seeed-studio/seeed-studio-grove-scd41-sensor/" target="_blank">Mouser</a></html> 
- 
-  * // **Caractéristiques** // 
-    * Alimentation: 2,4V à 5,5 Vcc 
-    * Sorties: numérique I2C 
-    * Plage de mesure de CO2 : 400 à 5 000 ppm  
- 
-\\ 
  
 === 2.5 SGP30 - Qualité de l'air intérieur === === 2.5 SGP30 - Qualité de l'air intérieur ===
Ligne 413: Ligne 297:
     * Plages de mesure     * Plages de mesure
       * 400 à 60000ppm d'**eCO2**  (dioxyde de carbone calculé équivalent, résolution: 11 ppm)       * 400 à 60000ppm d'**eCO2**  (dioxyde de carbone calculé équivalent, résolution: 11 ppm)
-      * 0 à 60 000ppb de COVT (composé organique volatile total, résolution: 13 ppb)+      * 0 à 60 000ppb de <html><a href="https://www.pranaair.com/fr/what-is-voc/" target="_blank" title="Qu'est-ce que le VOC?"><b>COVT</b></a></html> (composé organique volatile total, résolution: 13 ppb)
       * éthanol: 0 à 1000 ppm (précision: 15%, résolution: 0,2 %)       * éthanol: 0 à 1000 ppm (précision: 15%, résolution: 0,2 %)
       * H2: 0 à 1000 ppm (précision: 10%, résolution: résolution: 0,2 %)       * H2: 0 à 1000 ppm (précision: 10%, résolution: résolution: 0,2 %)
Ligne 421: Ligne 305:
   {{ :materiels:capteurs:acrobate.gif?nolink&40|}}   {{ :materiels:capteurs:acrobate.gif?nolink&40|}}
   * //**Documentation**// \\    * //**Documentation**// \\ 
-    * PDF à télécharger <html><a href="https://www.mouser.fr/datasheet/2/737/adafruit_sgp30_gas_tvoc_eco2_mox_sensor-1396564.pdf" target="_blank"><strong>ici</strong></a></html>+    * PDF à télécharger <html><a href="https://www.mouser.fr/datasheet/2/737/adafruit_sgp30_gas_tvoc_eco2_mox_sensor-1396564.pdf" target="_blank"><b>ici</b></a></html> 
 +    * Tableau de valeurs <html><a href="https://webge.fr/doc/wikis/img/AQI tvoc.webp" target="_blank"><b>TVOC</b></a></html>
  
 \\ \\
Ligne 427: Ligne 312:
 == 2.5.2 Bibliothèques ==  == 2.5.2 Bibliothèques == 
 <tabs>  <tabs> 
-  * [[#tab-sgp30duino_1|Arduino UNO]] 
   * [[#tab-sgp30esp_1|ESP (Arduino)]]   * [[#tab-sgp30esp_1|ESP (Arduino)]]
   * [[#tab-sgp30pico_1|Rpi Pico (µPython)]]   * [[#tab-sgp30pico_1|Rpi Pico (µPython)]]
  
-<pane id="tab-sgp30duino_1">+<pane id="tab-sgp30esp_1">
   * //A partir du gestionnaire de bibliothèques de l'**IDE Arduino**, installer :// {{ :materiels:capteurs:gaz:sgp30_adafruit.png?nolink |}}   * //A partir du gestionnaire de bibliothèques de l'**IDE Arduino**, installer :// {{ :materiels:capteurs:gaz:sgp30_adafruit.png?nolink |}}
 </pane> </pane>
-<pane id="tab-sgp30esp_1"> +
-  * Avenir +
-</pane>+
 <pane id="tab-sgp30pico_1"> <pane id="tab-sgp30pico_1">
-  * Avenir+  * <color #ed1c24>A venir</color>
 </pane> </pane>
 </tabs> </tabs>
Ligne 447: Ligne 329:
 == 2.5.3 Exemples de code ==  == 2.5.3 Exemples de code == 
 <tabs> <tabs>
-  * [[#tab-sgp30duino_2|Arduino UNO]] 
   * [[#tab-sgp30esp_2|ESP (Arduino)]]   * [[#tab-sgp30esp_2|ESP (Arduino)]]
   * [[#tab-sgp30pico_2|Rpi Pico (µPython)]]   * [[#tab-sgp30pico_2|Rpi Pico (µPython)]]
-<pane id="tab-sgp30duino_2">+<pane id="tab-sgp30esp_2">
 {{ :materiels:capteurs:distance:arduinoico.png?nolink&40|}} {{ :materiels:capteurs:distance:arduinoico.png?nolink&40|}}
   * //**Exemple** de l'IDE Arduino pour tester le capteur// \\  Fichier -> Exemples -> Adafruit SGP30 Sensor -> **sgp30test.ino**   * //**Exemple** de l'IDE Arduino pour tester le capteur// \\  Fichier -> Exemples -> Adafruit SGP30 Sensor -> **sgp30test.ino**
Ligne 569: Ligne 450:
 <callout type="tip" icon="true"><html><a href="https://webge.fr/doc/wikis/code/Arduino/ARD_PIO_ESP8266_SGP30.zip" target="_blank">Télécharger</a></html> le projet PlatformIO pour VSCode.</callout> <callout type="tip" icon="true"><html><a href="https://webge.fr/doc/wikis/code/Arduino/ARD_PIO_ESP8266_SGP30.zip" target="_blank">Télécharger</a></html> le projet PlatformIO pour VSCode.</callout>
 </pane> </pane>
-<pane id="tab-sgp30esp_2"> +
-  * A venir +
-</pane>+
 <pane id="tab-sgp30pico_2"> <pane id="tab-sgp30pico_2">
-  * A venir+  * <color #ed1c24>A venir</color>
 </pane> </pane>
 </tabs> </tabs>
 ==== Pour aller plus loin ... === ==== Pour aller plus loin ... ===
   * **Exemple de projet** \\ <html><a href="https://www.hackster.io/naveenbskumar/co2-levels-monitoring-and-airflow-control-using-wio-terminal-a5a241" target="_blank"> Surveillance des niveaux de CO2 et contrôle du débit d'air à l'aide du terminal Wio</a></html>   * **Exemple de projet** \\ <html><a href="https://www.hackster.io/naveenbskumar/co2-levels-monitoring-and-airflow-control-using-wio-terminal-a5a241" target="_blank"> Surveillance des niveaux de CO2 et contrôle du débit d'air à l'aide du terminal Wio</a></html>
  • materiels/capteurs/gaz/gaz.1719413659.txt.gz
  • Dernière modification : 2024/06/26 16:54
  • de phil