สร้างเว็บEngine by iGetWeb.com
Cart รายการสินค้า (0)

Gas Sensor - MQ-7 Carbon Monoxide (CO)

Gas Sensor - MQ-7  Carbon Monoxide (CO)
Gas Sensor - MQ-7  Carbon Monoxide (CO) 


สั่งสินค้าสามารถพิมพ์ใน email ว่าต้องการอย่างละกี่ชิ้นชื่อสินค้าอะไรบ้างแล้ว

ส่งมาที่  circuitshops@hotmail.com  หรือ  tech.circuitshops@gmail.cm

แล้วจะมีคนตอบ email แจ้งราคาพร้อมค่าจัดส่งไปให้ครับ 





..
รายละเอียดย่อ :

Carbon Monoxide (CO) sensor, suitable for sensing CO concentrations in the air. The MQ-7 can detect CO concentrations anywhere from 20 to 2000ppm.
รายละเอียดทั้งหมด :

This is a simple-to-use Carbon Monoxide (CO) sensor, suitable for sensing CO concentrations in the air. The MQ-7 can detect CO concentrations anywhere from 20 to 2000ppm.

This sensor has a high sensitivity and fast response time. The sensor's output is an analog resistance. The drive circuit is very simple; all you need to do is power the heater coil with 5V, add a load resistance, and connect the output to an ADC.

This sensor comes in a package similar to our MQ-3 alcohol sensor, and can be used with the breakout board below.

ราคา 100 บาท

Code:

unsigned int val = 0;
unsigned char PIN = 0;

void setup() {
  Serial.begin(9600);
  pinMode(PIN,INPUT);
}

void loop() {
  val = analogRead(PIN);
  Serial.println(val);
  delay(500);
}


view