Surilli
Published © GPL3+

Integrate Surilli GSM with MQ135 Gas Sensor Module

Visualize the changing values of air quality using Surilli GSM and MQ135 Gas Sensor Module.

BeginnerFull instructions provided15 minutes1,454
Integrate Surilli GSM with MQ135 Gas Sensor Module

Things used in this project

Hardware components

Surilli GSM
Surilli GSM
×1
MQ135 Gas Sensor
×1
Jumper wires (generic)
Jumper wires (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Surilli GSM with MQ135 Gas Sensor Module

Code

SurilliGSM_with_MQ135

C/C++
int sensorValue;

void setup()

{  
  
     Serial.begin(9600);                            // Set the serial port to 9600
  
}

void loop()

{
    sensorValue = analogRead(0);                      // Read analog input pin A0
    Serial.print("AirQua=");
    Serial.print(sensorValue, DEC);                // Prints the value read
    Serial.println(" PPM");
    delay(1000);                                      // Wait 1000ms for next reading
    
}

Credits

Surilli

Surilli

196 projects • 62 followers
Surilli is a premiere Internet of Things centric Technology Company aimed at providing cutting edge innovative solutions.

Comments