Grove - Multichannel Gas Sensor (CO, NO2, VOC, C2H5CH) ของแท้จาก SeeedStudio

Grove - Multichannel Gas Sensor (CO, NO2, VOC, C2H5CH) ของแท้จาก SeeedStudio
Grove - Multichannel Gas Sensor (CO, NO2, VOC, C2H5CH) ของแท้จาก SeeedStudioGrove - Multichannel Gas Sensor (CO, NO2, VOC, C2H5CH) ของแท้จาก SeeedStudioGrove - Multichannel Gas Sensor (CO, NO2, VOC, C2H5CH) ของแท้จาก SeeedStudioGrove - Multichannel Gas Sensor (CO, NO2, VOC, C2H5CH) ของแท้จาก SeeedStudioGrove - Multichannel Gas Sensor (CO, NO2, VOC, C2H5CH) ของแท้จาก SeeedStudio
รหัสสินค้า AS00355
หมวดหมู่ Gas Sensors แก๊สเซ็นเซอร์
ราคา 1,985.00 บาท
สถานะสินค้า พร้อมส่ง
จำนวน
ชิ้น
หยิบลงตะกร้า
หนังสือรับรองบริษัท
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
ดูแนวทางการใช้งานและ arduino code ด้านล่าง หรือ เข้าไปดูรายละเอียดได้ใน Click

ดาวน์โหลดไลบรารี่และตัวอย่าง arduino code ได้ที่ Click

Summary
Grove - Multichannel Gas Sensor V2 provides stable and reliable gases detecting function under the circumstances of any other four sorts of gases. It can detect a variety of gases, besides Carbon monoxide (CO), Nitrogen dioxide (NO2), Ethyl alcohol(C2H5CH), Volatile Organic Compounds (VOC), and etc.

Features

  • Four fully independent sensor elements on one package.
  • The ability to detect a variety of gases, besides Carbon monoxide (CO), Nitrogen dioxide (NO2), Ethyl alcohol(C2H5CH), Volatile Organic Compounds (VOC) and etc.
  • Qualitative detecting, rather than quantitative.
  • Compact size for easy deployment.
 
Description
Worried about not recognizing the gas around your workplace or other surroundings and environment? Here comes the excellent solutions we offer!  Grove - Multichannel Gas Sensor V2 has 4 measuring units, each of them is sensitive to various kinds of gases, which means you are able to get four sets of data at the same time. And different sorts of gases can also be judged by these four sets of data. The gas sensor used in this module is based on MEMS technology and has the advantage of being in a small size with considerable measurement stability and is more suitable for qualitative than quantitative measurement.

Specifications

MCU STM32F030
Interface 0x55
I2C address 3.3V~5V
Onboard Gas Sensors GM-102B; GM-302B; GM-502B; GM-702B

How Does Storage Time Affect The Recommended Warm-Up Time of This Sensor?

Storage time Recommended warm-up time
Less than 1 month No less than 24 hrs
1-6 months No less than 48 hrs
Over 6 months No less than 72 hrs

Cautions

  • The module should avoid being placed in the volatile silicon compound steam, or it will cause the sensitivity to be reduced and irrecoverable.
  • The module should avoid being exposed to high concentrations of corrosive gases (such as H2S, SOX, Cl2, HCl, etc.), otherwise, it will be irreversibly damaged.
  • The module should not be placed in water or ice.
  • After the module is powered on, the sensor will heat up to a certain degree during the process, which is a normal phenomenon.
  • Users MUST preheat the module before starting to measure gases.

Parts list

  • 1x Multichannel gas sensor board
  • 1x Grove cable

ขั้นตอนการใช้งานและเชื่อมต่อ
  • Step 1 Connect Grove - Multichannel Gas Sensor V2 to port I2C of Grove-Base Shield.

  • Step 2 Plug Grove - Base Shield into Wio Terminal.

  • Step 3 Connect Wio Terminal to PC via a USB cable.

  • Step 4 Download the Grove_Multichannel_Gas_Sensor_v2 Library from Github.

  • Step 5 Refer How to install library to install library for Arduino.

  • Step 6 Copy the code into Wio Terminal and upload. If you do not know how to upload the code, please check how to upload code.

  • Step 7 Refer How to TFT LCD Library to install TFT LCD Library.

  • Step 8 Upload code from the Software Code below and the data has to be displayed successfully.

Arduino Code

#include
#include
#include
GAS_GMXXX<TwoWire> gas;

TFT_eSPI tft;
// Stock font and GFXFF reference handle
TFT_eSprite spr = TFT_eSprite(&tft); // Sprite 

void setup() {
// put your setup code here, to run once:
tft.begin();
tft.setRotation(3);
spr.createSprite(tft.width(),tft.height());
gas.begin(Wire, 0x08); // use the hardware I2C
}

void loop() {
// put your main code here, to run repeatedly:
int val;
spr.fillSprite(TFT_BLACK);
spr.setFreeFont(&FreeSansBoldOblique18pt7b);
spr.setTextColor(TFT_BLUE);
spr.drawString("Gas Terminal", 60 - 15, 10 , 1);// Print the test text in the custom font
for(int8_t line_index = 0;line_index < 5 ; line_index++)
{
spr.drawLine(0, 50 + line_index, tft.width(), 50 + line_index, TFT_GREEN);
}

spr.setFreeFont(&FreeSansBoldOblique9pt7b); // Select the font
// GM102B NO2 sensor
val = gas.getGM102B();
if (val > 999) val = 999;
spr.setTextColor(TFT_WHITE);
spr.drawString("NO2:", 60 - 24, 100 -24 , 1);// Print the test text in the custom font
spr.drawRoundRect(60 - 24,100,80,40,5,TFT_WHITE);
spr.setTextColor(TFT_WHITE);
spr.drawNumber(val,60 - 20,100+10,1);
spr.setTextColor(TFT_GREEN);
spr.drawString("ppm", 60 + 12, 100+8, 1);
// GM302B C2H5CH sensor
val = gas.getGM302B();
if (val > 999) val = 999;
spr.setTextColor(TFT_WHITE);
spr.drawString("C2H5CH:", 230 -24 , 100 - 24 , 1);// Print the test text in the custom font
spr.drawRoundRect(230 - 24,100,80,40,5,TFT_WHITE);
spr.setTextColor(TFT_WHITE);
spr.drawNumber(val,230 - 20,100+10,1);
spr.setTextColor(TFT_GREEN);
spr.drawString("ppm", 230 + 12, 100+8, 1);
// GM502B VOC sensor
val = gas.getGM502B();
if (val > 999) val = 999;
spr.setTextColor(TFT_WHITE);
spr.drawString("VOC:", 60 - 24, 180 -24 , 1);// Print the test text in the custom font
spr.drawRoundRect(60 - 24,180,80,40,5,TFT_WHITE);
spr.setTextColor(TFT_WHITE);
spr.drawNumber(val,60 - 20,180+10,1);
spr.setTextColor(TFT_GREEN);
spr.drawString("ppm", 60 + 12, 180+8, 1);
// GM702B CO sensor
val = gas.getGM702B();
if (val > 999) val = 999;
spr.setTextColor(TFT_WHITE);
spr.drawString("CO:", 230 -24 , 180 - 24, 1);// Print the test text in the custom font
spr.drawRoundRect(230 - 24 ,180,80,40,5,TFT_WHITE);
spr.setTextColor(TFT_WHITE);
spr.drawNumber(val ,230 - 20 ,180+10,1);
spr.setTextColor(TFT_GREEN);
spr.drawString("ppm", 230 + 12, 180+8, 1);

spr.pushSprite(0, 0);
delay(100);

}

Cautions

  • The module should avoid being placed in the volatile silicon compound steam, or it will cause the sensitivity to be reduced and irrecoverable.
  • The module should avoid being exposured to high concentrations of corrosive gases (such as H2S, SOX, Cl2, HCl, etc.), otherwise it will be irreversibly damaged.
  • The module should not be placed in water or ice.
  • After the module is powered on, the sensor will heat up to a certain degree during the process, which is a normal phenomena.
  • Users MUST preheat the module before starting measuring gases.

วิธีการชำระเงิน

ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB

กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ

 

ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ

https://www.arduitronics.com/informpayment

 

บมจ. ธนาคารกสิกรไทย สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารกรุงเทพ จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 สะสมทรัพย์
ธนาคารทหารไทยธนชาต จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 กระแสรายวัน

เพิ่มเพื่อน

@rfm0967y

ติดต่อสอบถาม

เพิ่มเพื่อน

CATEGORY

Sensors / Modules [1696]

CONTACT US

มือถือ 0887823467 แฟกซ์ 02-0153201

Join เป็นสมาชิกร้านค้า

ร้านArduitronics
ร้านArduitronics
/www.arduitronics.com/
Join เป็นสมาชิกร้าน
2121
สมัครสมาชิกร้านนี้ เพื่อรับสิทธิพิเศษ

STATISTICS

หน้าที่เข้าชม15,378,454 ครั้ง
ผู้ชมทั้งหมด5,881,532 ครั้ง
เปิดร้าน21 พ.ค. 2556
ร้านค้าอัพเดท8 ก.ย. 2568

MEMBER

พูดคุย-สอบถาม