Gas Detection mobile alerts using IoT | ESP8266 | Blynk IoT | Engineering IoT Projects

แชร์
ฝัง

ความคิดเห็น • 3

  • @NatanaelHandoko
    @NatanaelHandoko 2 หลายเดือนก่อน +2

    this is awesome project for nodemcu

    • @Elextrolyte
      @Elextrolyte  2 หลายเดือนก่อน

      Definitely 🫡

  • @Elextrolyte
    @Elextrolyte  3 หลายเดือนก่อน +1

    Here's the code:
    #define BLYNK_TEMPLATE_ID ""
    #define BLYNK_TEMPLATE_NAME "Gas leakage alert"
    #define BLYNK_AUTH_TOKEN ""
    #define BLYNK_PRINT Serial
    #include
    #include

    char auth[] = BLYNK_AUTH_TOKEN;
    char ssid[] = ""; // type your wifi name
    char pass[] = ""; // type your wifi password
    int smokeA0 = A0;
    int data = 0;
    int sensorThres = 100;
    BlynkTimer timer;
    void sendSensor(){

    int data = analogRead(smokeA0);
    Blynk.virtualWrite(V0, data);
    Serial.print("Pin A0: ");
    Serial.println(data);
    if(data > 300){
    //Blynk.email("test@gmail.com", "Alert", "Gas Leakage Detected!");
    Blynk.logEvent("gas_alert","Gas Leakage Detected");
    }
    }
    void setup(){
    pinMode(smokeA0, INPUT);
    Serial.begin(115200);
    Blynk.begin(auth, ssid, pass);
    //dht.begin();
    timer.setInterval(2500L, sendSensor);
    }
    void loop(){
    Blynk.run();
    timer.run();
    }