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

Gas Sensor MQ-3 Alcohol

Gas Sensor MQ-3 Alcohol

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

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

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


..

รายละเอียดทั้งหมด :


This alcohol sensor is suitable for detecting alcohol concentration on your breath, just like your common breathalyzer. It has a high sensitivity and fast response time. Sensor provides an analog resistive output based on alcohol concentration. The drive circuit is very simple, all it needs is one resistor. A simple interface could be a 0-3.3V ADC.



ราคา : 90.00 บาท


Air Quality MQ135 sensor by BARRAGAN http://barraganstudio.com 

Reads values from an air quality sensor connected to the analog input pin 0. The value read from the sensor is proportional to the air quality measured by the sensor. The value read is printed to the serial monitor

int sensorValue;

void setup()
{
  Serial.begin(9600);      // sets the serial port to 9600
}

void loop()
{
  sensorValue = analogRead(0);       // read analog input pin 0
  Serial.println(sensorValue, DEC);  // prints the value read
  delay(100);                        // wait 100ms for next reading
}


view