ข้อมูล
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
รายละเอียดสินค้า

MQ-9 โมดูลเซ็นเซอร์ตรวจจับแก๊สคาร์บอนมอนอกไซด์ในอากาศ (Carbon monoxide Gas Sensor Module)

MQ-9 โมดูลเซ็นเซอร์ตรวจจับแก๊สคาร์บอนมอนอกไซด์ในอากาศ (Carbon monoxide Gas Sensor Module) 
เป็นเซ็นเซอร์ที่ใช้ในการตรวจจับปริมาณแก๊สคาร์บอนมอนอกไซด์ในอากาศ
ให้สัญญาณออกมาเป็นแบบ Analog หรือแบบดิจิตอล สามารถปรับความไวของสัญญาณดิจิตอลได้
โดยใช้หลักการที่ค่าความต้านทานจะเปลี่ยนแปลงไปเมื่อมีการตรวจพบแก๊สคาร์บอนมอนอกไซด์
ยิ่งความเข้มข้นของแก๊สสูงเท่าใด แรงดันไฟฟ้าก็จะยิ่งสูงขึ้น
 
รายละเอียดสินค้า
MQ-9 โมดูลเซ็นเซอร์ตรวจจับแก๊สคาร์บอนมอนอกไซด์ในอากาศ
ขนาด: 32 มม. X22 มม. X27 มม.
แรงดันใช้งาน: DC 5V
MQ-9 Sensor Description :
Sensitive material MQ-9 gas sensor is used to clean the air in the lower conductivity of tin dioxide (SnO2). Detection method using low temperature cycling (1.5V heating ) to detect carbon monoxide, conductivity sensors with carbon monoxide in the air increased with increasing gas concentration , spurious adsorption at high temperatures (5.0V heating ) detection of combustible gases methane, propane and cryogenic cleaning gases. Simple circuit can be used to change the conductivity , concentration of the gas is converted to the corresponding output signal. MQ-9 high gas sensor for carbon monoxide, methane , liquefied petroleum gas sensitivity , the sensor can detect a variety of gases containing carbon monoxide and flammable , is a low-cost sensors for a variety of applications .
 
Module Applications:
Suitable for home or factory gas leakage monitoring devices , monitoring devices suitable for carbon monoxide and other combustible gases , carbon monoxide can be tested 10 to 1000ppm CO, combustible gas range 100 to 10000ppm


 
Module Features :
using high-quality dual-panel design, with power indicator and TTL signal output instructions;
the switching signal having a DO (TTL) output and analog output AO ;
TTL output valid signal is low . ( Low-level signal when the output light can be directly connected to the microcontroller or relay module )
the higher the voltage of the analog output voltage with concentration higher .
for the carbon monoxide detector has good sensitivity.
there are four screw holes for easy positioning ;
Product dimensions : 32 (L) * 20 (W) * 22 (H)
has a long life and reliable stability
rapid response and recovery characteristics
Electrical properties:
Input voltage : DC5V Power consumption ( current ): 150mA
DO output : TTL digital 0 and 1 ( 0.1 and 5V)
AO output :0.1-0 .3 V ( relative to pollution ) , the maximum concentration of a voltage of about 4V
Special note: After the sensor is powered , needs to warm up around 20S, measured data was stable , heat sensor is a normal phenomenon , because the internal heating wire , if hot is not normal .

MQ-9 carbon monoxide Combustible gas sensor alarm MQ9 module

เซนเซอร์แก๊ส carbon monoxide CO and Combustible Gas ให้สัญญาณออกมาเป็นแบบ analog หรือแบบดิจิตอล สามารถปรับความไวของสัญญาณดิจิตอลได้

ข้อมูล MQ-9 carbon monoxide Combustible gas sensor alarm MQ9 module

MQ-9 Sensor Description :
Sensitive material MQ-9 gas sensor is used to clean the air in the lower conductivity of tin dioxide (SnO2). Detection method using low temperature cycling (1.5V heating ) to detect carbon monoxide, conductivity sensors with carbon monoxide in the air increased with increasing gas concentration , spurious adsorption at high temperatures (5.0V heating ) detection of combustible gases methane, propane and cryogenic cleaning gases. Simple circuit can be used to change the conductivity , concentration of the gas is converted to the corresponding output signal. MQ-9 high gas sensor for carbon monoxide, methane , liquefied petroleum gas sensitivity , the sensor can detect a variety of gases containing carbon monoxide and flammable , is a low-cost sensors for a variety of applications .
 
Module Applications:
Suitable for home or factory gas leakage monitoring devices , monitoring devices suitable for carbon monoxide and other combustible gases , carbon monoxide can be tested 10 to 1000ppm CO, combustible gas range 100 to 10000ppm

Module Features :
  • using high-quality dual-panel design, with power indicator and TTL signal output instructions;
  • the switching signal having a DO (TTL) output and analog output AO ;
  • TTL output valid signal is low . ( Low-level signal when the output light can be directly connected to the microcontroller or relay module )
  • the higher the voltage of the analog output voltage with concentration higher .
  • for the carbon monoxide detector has good sensitivity.
  • there are four screw holes for easy positioning ;
  • Product dimensions : 32 (L) * 20 (W) * 22 (H)
  • has a long life and reliable stability
  • rapid response and recovery characteristics
Electrical properties:
  • Input voltage : DC5V Power consumption ( current ): 150mA
  • DO output : TTL digital 0 and 1 ( 0.1 and 5V)
  • AO output :0.1-0 .3 V ( relative to pollution ) , the maximum concentration of a voltage of about 4V
  • Special note: After the sensor is powered , needs to warm up around 20S, measured data was stable , heat sensor is a normal phenomenon , because the internal heating wire , if hot is not normal .

MQ-9 carbon monoxide Combustible gas sensor alarm MQ9 module


ตัวอย่างโค้ด

int CO_pin = A0; // กำหนดขาที่เชื่อมต่อกับเซ็นเซอร์ MQ-9
float Vout, R0 = 11.05; // ค่าความต้านทานอ้างอิง (R0) ของเซ็นเซอร์ MQ-9
float ppm; // ค่าคาร์บอนมอนอกไซด์ (CO) ที่วัดได้

void setup() {
  Serial.begin(9600); // เปิดใช้งาน Serial Monitor
}

void loop() {
  Vout = analogRead(CO_pin) * 5.0 / 1023.0; // อ่านค่าแรงดันไฟฟ้าจากเซ็นเซอร์
  ppm = 10.0 * (Vout / R0 - 1.0); // คำนวณค่า CO จากแรงดันไฟฟ้า
  Serial.print("CO: "); // แสดงผลค่า CO บนหน้าจอ Serial Monitor
  Serial.print(ppm);
  Serial.println(" ppm");
  delay(1000); // หน่วงเวลา 1 วินาที
}

 





----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


ตัวอย่างโค้ด 2

 

const int mqPin = A0;   // Analog pin for MQ-4 sensor

 

const int DO_Pin=12;

 

const int buzzerPin = 8; // Digital pin for buzzer

 

 

 

void setup() {

 

    pinMode(buzzerPin, OUTPUT);

 

    pinMode(DO_Pin, INPUT); // Configure D8 pin as a digital input pin

 

    Serial.begin(9600);

 

}

 

 

 

void loop() {

 

    int sensorValue = analogRead(mqPin);

 

    int threshold= digitalRead(DO_Pin);

 

    Serial.print("threshold_value: ");

 

    Serial.print(threshold);                      //prints the threshold_value reached as either LOW or HIGH (above or underneath)

 

    Serial.print(", ");

 

    Serial.print("Sensor Value: ");

 

    Serial.println(sensorValue);

 

    delay(100);

 

    // Adjust the threshold value based on your sensor's characteristics

 

 

 

    if (threshold==LOW) {

 

        digitalWrite(buzzerPin, HIGH); // Turn on the buzzer

 

        delay(200); // Buzzer on time

 

        digitalWrite(buzzerPin, LOW);  // Turn off the buzzer

 

    }

 

    //delay(1000); // Wait before the next reading     

 

}

 

เงื่อนไขอื่นๆ
Tags

วิธีการสั่งซื้อสินค้า

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

ธนาคารกรุงเทพ จำกัด (มหาชน) สาขาสุขาภิบาล3 สะสมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาสุขาภิบาล3 ออมทรัพย์
บมจ. ธนาคารกรุงไทย สาขาเดอะมอลล์บางกะปิ2 ออมทรัพย์

นโยบายการเปลี่ยนหรือคืนสินค้า

การเปลี่ยนสินค้า กรณีที่สินค้าที่ได้ซื้อ มีปัญหาจากตัวสินค้าชำรุดเสียหายเนื่องจากการผลิต สามารถเปลี่ยนสินค้าใหม่ได้ ภายใน 7 วัน นับจากวันที่ซื้อสินค้า หากพ้นกำหนดนี้ บริษัทฯ จะรับเคลมสินค้าตามขั้นตอนปกติ งดคืนสินค้าทุกกรณี
รายการสั่งซื้อของฉัน
รายการสั่งซื้อของฉัน
ข้อมูลร้านค้านี้
ร้านสมาร์ทฟาร์มดีไอวาย
สมาร์ทฟาร์มดีไอวาย
บริษัท สมาร์ทเอไอโซลูชั่น จำกัด รับก่อสร้างฟาร์ม โรงเรือนระบบปิด ระบบเปิด ขนาดเล็ก กลาง ใหญ่ plant factory โรงเรือนอัจฉริยะ ฟาร์มระบบอัตโนมัติและรับติดตั้งระบบควบคุมสมองกลอิเล็กทรอนิกส์ ทั้ง Industrial และ Non Industrial, Smart Farm ฟาร์มพืช ฟาร์มสัตว์ สำหรับเกษตรยุคใหม่ นอกจากนี้ยังจำหน่ายอุปกรณ์ ให้คำปรึกษา ออกแบบ แผนผังระบบฟาร์ม โรงเรือน งานจัดสวน งานออกโชว์ งานโมเดล ต่างๆ ที่เกี่ยวข้อง และจำหน่ายอุปกรณ์สินค้าทางการเกษตร อุปกรณ์เทคโนโลยีในงานเกษตร ต่างๆ สมาร์ทฟาร์มดีไอวาย เลขที่ประจำตัวผู้เสียภาษี : 0105560177872 LINE ID: @smartfarmdiy LINE ID: @smartfarmin
เบอร์โทร : 020779707
อีเมล : contact@smartfarmdiy.com
ส่งข้อความติดต่อร้าน
เกี่ยวกับร้านค้านี้
สินค้าที่ดูล่าสุด
ดูสินค้าทั้งหมดในร้าน
สินค้าที่ดูล่าสุด
บันทึกเป็นร้านโปรด
Join เป็นสมาชิกร้าน
แชร์หน้านี้
แชร์หน้านี้

TOP เลื่อนขึ้นบนสุด
พูดคุย-สอบถาม