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.
รายละเอียดทั้งหมด :
ราคา 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);
}
unsigned char PIN = 0;
void setup() {
Serial.begin(9600);
pinMode(PIN,INPUT);
}
void loop() {
val = analogRead(PIN);
Serial.println(val);
delay(500);
}