รหัสสินค้า | SG30379 |
หมวดหมู่ | วัดสภาพแวดล้อมและแก๊ส Environmental / Gas |
ราคา | 3,595.00 บาท |
สถานะสินค้า | พร้อมส่ง |
จำนวน | ชิ้น |
Gravity CO2 Sensor Selection Guide | |||
![]() |
![]() |
![]() |
|
Product Name | Gravity: Analog Electrochemistry CO2 Sensor | Gravity: Analog IR CO2 Sensor | Gravity: UART IR CO2 Sensor |
SKU | SG40379 | SG20379 | SG30379 |
Operation Voltage | 3.7~5V | 4.5~5.5V | 4.5~5.5V |
Output |
Gravity: Analog
(Analog2.7~4.1V)
+
3P Header Digital Output(Alarm):0~VCC Level
|
Gravity: Analog
(Analog Output 0.4~2V)
|
Gravity: UART
(0~3.3V Level)
|
Measurement Principle |
Electrochemistry
(Solid electrolyte battery principle)
|
NDIR(non-dispersive infrared) | NDIR(non-dispersive infrared) |
Measurement Range | 0~10000 ppm | 0~5000 ppm | 0~50000 ppm |
Accuracy | ±100ppm@400ppm | ±(100ppm + 6% readings) | ±(100ppm + 6% readings) |
Response Time | <20s | <90s | <30s |
Average Power | <1W | <430mW@5V | <430mW@5V |
Operation Temperature | -20℃~50℃ | 0℃~50℃ | 0℃~50℃ |
Operation Humidity | 0~95% RH (No condensation) | 0~95% RH (No condensation) | 0~95% RH (No condensation) |
Lifespan | >1 years | >5 years | >5 years |
Dimension
(PCB)
|
32*42 mm | 37*69 mm | 21*27.1 mm |
Features |
1.Large Range
2.Adjustable Alarm Threshold
3.Fast Response
4.Analog Output
|
1.High Accuracy
2.Long Lifespan
3.Auto Temperature Compensation
4.Water Vapor Interference Resistance
5.Analog Output
|
1.High Accuracy
2.Large Range
3.Long Lifespan
4.Auto Temperature Compensation
5.Water Vapor Interference Resistance
6.3.3V UART Output
|
Num | Label | Description |
---|---|---|
1 | RX | RX |
2 | TX | TX |
3 | GND | GND |
4 | VCC | VCC |
5 | Detector connection | Detector connection |
Upload the code to Arduino Uno, open the serial monitor to check the CO2 concentration.
NOTE: The CO2 concentration during the preheating time in the serial monitor is not accurate, just ignore the result in the first 3 minutes (Preheating Time). |
/***************************************************
* Infrared CO2 Sensor 0-50000ppm(Wide Range)
* ****************************************************
* The follow example is used to detect CO2 concentration.
* @author lg.gang(lg.gang@qq.com)
* @version V1.0
* @date 2016-6-6
* GNU Lesser General Public License.
* See <http://www.gnu.org/licenses/> for details.
* All above must be included in any redistribution
* ****************************************************/
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); // RX, TX
unsigned char hexdata[9] = {0xFF,0x01,0x86,0x00,0x00,0x00,0x00,0x00,0x79}; //Read the gas density command /Don't change the order
void setup() {
Serial.begin(9600);
while (!Serial) {
}
mySerial.begin(9600);
}
void loop() {
mySerial.write(hexdata,9);
delay(500);
for(int i=0,j=0;i<9;i++)
{
if (mySerial.available()>0)
{
long hi,lo,CO2;
int ch=mySerial.read();
if(i==2){ hi=ch; } //High concentration
if(i==3){ lo=ch; } //Low concentration
if(i==8) {
CO2=hi*256+lo; //CO2 concentration
Serial.print("CO2 concentration: ");
Serial.print(CO2);
Serial.println("ppm");
}
}
}
}
Open your IDE serial monitor and wait for about 3 minutes (preheat process), then you'll see the finial data. (Indoor Temperature: 25℃)
ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB
กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ
ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ
https://www.arduitronics.com/informpayment
หน้าที่เข้าชม | 15,376,458 ครั้ง |
ผู้ชมทั้งหมด | 5,879,536 ครั้ง |
เปิดร้าน | 21 พ.ค. 2556 |
ร้านค้าอัพเดท | 6 ก.ย. 2568 |