ขอโค๊ด Arduino MQ-135 Gas Sensor เพื่อวัด (Nitrogen Dioxide,Sulfur Dioxide)

โค๊ดที่มีตอนนี้วัดได้แค่  CO2  ครับ
ขอความกรุณาด้วยครับ ขอบคุณครับ
-----------------------------------------------------------------
[code]    int sensorValue;
void setup() {  
   Serial.begin(9600);      // sets the serial port to 9600
}
void loop() {  
        sensorValue = analogRead(0);       // reads analog input pin 0  
        Serial.println(sensorValue, DEC);   // prints the value read  
  delay(100);                                       // waits 100ms before the next read }
}
[/code]
แก้ไขข้อความเมื่อ
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่