covid-19 display

Circuit diagram 



Code for covid -19 display

#ifdef ESP8266
#include <BlynkSimpleEsp8266.h>
#elif defined(ESP32)
#include <BlynkSimpleEsp32.h>
#else
#error "Board not found"
#endif

#include <ESP32httpUpdate.h>
#include <ArduinoHttpClient.h>
#include <b64.h>
#include <HttpClient.h>
#include <HTTPClient.h>
 #include <LiquidCrystal.h>
 #include <Wire.h>  // Only needed for Arduino 1.6.5 and earlier

  LiquidCrystal lcd(22,21,5,18,23,19);

  const char* ssid = "Nokia";              //WIFI SSID Name                           
  const char* password = "muvamr12";        //WIFI Password
  const char* host = "api.thingspeak.com";  //We read the data from this host                                 
  const int httpPortRead = 80;                                         
                                               
  const char* url1 = "/apps/thinghttp/send_request?api_key=7P4ARJXNHBG3C3R8";     //This URL is mine but I kept it so you can replace the key only
  const char* url2 = "/apps/thinghttp/send_request?api_key=U45RA1D45Q182GB4";
  const char* url3 = "/apps/thinghttp/send_request?api_key=9BONAK6MITO8S3M6";
  int To_remove;      //There are some irrelevant data on the string and here's how I keep the index
                      //of those characters
  String Cases,Deaths,Recovered,Data_Raw,Data_Raw_1,Data_Raw_2,Data_Raw_3;  //Here I keep the numbers that I got

  WiFiClient client;      //Create a WiFi client and http client                                                   
  HTTPClient http;


  void setup() {
    lcd.begin(16, 2);
    lcd.setCursor(1, 0);
    lcd.print("Covid-19 INDIA"); //Change Your Country Name
    lcd.setCursor(1, 1);
    lcd.print("Mugesh robot");  //Change Name if you want
 
    Serial.begin(115200);
    WiFi.disconnect();             //Disconnect and reconnect to the Wifi you set                                               
    delay(1000);                                                               
    WiFi.begin(ssid, password);                                                 
    Serial.println("Connected to the WiFi network");   //Display feedback on the serial monitor                                     
    Serial.println(WiFi.localIP());
  }

void loop() {


   //Reading 1: Reading of cases
    if( http.begin(host,httpPortRead,url1))        //Connect to the host and the url                                   
      {
        int httpCode = http.GET();                //Check feedback if there's a response                                               
        if (httpCode > 0)                                                           
        {
          if (httpCode == HTTP_CODE_OK || httpCode == HTTP_CODE_MOVED_PERMANENTLY)
            {             
           
              Data_Raw = http.getString();   //Here we store the raw data string
         
           
              Data_Raw_1 = Data_Raw;                                 
              To_remove = Data_Raw_1.indexOf(">");                      //I look for the position of this symbol ">"                               
              Data_Raw_1.remove(0,To_remove+1);                        //I remove it and everything that's before
              To_remove = Data_Raw_1.indexOf("<");                     //I look for the position of this symbol ">"                             
              Data_Raw_1.remove(To_remove,Data_Raw_1.length());          //I remove it and everything that's after
                                                                     //Example: This is the raw data received <td style="font-weight: bold; text-align:right">63,927</td>
                                                                     //First we look for ">" and we remove everything before it including it
                                                                     //We stay with this 63,927</td>
                                                                     //We look for "<" symbol and we remove it + everything after
                                                                     //We keep only this 63,927 as string
              Cases=Data_Raw_1;
              Serial.print("Cases: ");  //I choosed to display it on the serial monitor to help you debug
              Serial.println(Cases);
           
              Data_Raw_2=Data_Raw;
              To_remove = Data_Raw_2.indexOf("<span>");
              Data_Raw_2.remove(0,To_remove+6);
              Data_Raw_3=Data_Raw_2;
              To_remove = Data_Raw_2.indexOf("</span>");
              Data_Raw_2.remove(To_remove,Data_Raw_2.length());

              Deaths=Data_Raw_2;
              Serial.print("Deaths: ");
              Serial.println(Deaths);
         
              To_remove = Data_Raw_3.indexOf("<span>");
              Data_Raw_3.remove(0,To_remove+6);

              To_remove = Data_Raw_3.indexOf("<");
              Data_Raw_3.remove(To_remove,Data_Raw_3.length());

              Recovered=Data_Raw_3;
           
              Serial.print("Recovered: ");
              Serial.println(Recovered); 
                                                                                     
            }
        }
        else //If we can't get data
        {
          Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
        }
     
        http.end();                                                               
      }
    else //If we can't connect to the HTTP
      {
        Serial.printf("[HTTP} Unable to connect\n");
      }

    while (WiFi.status() != WL_CONNECTED)     //In case the Wifi connexion is lost                                 
      {
     
        WiFi.disconnect();                                                     
        delay(1000);                                                           
     
        WiFi.begin(ssid, password);                                           
        Serial.println("Reconnecting to WiFi..");     
        delay(10000);                                                           
      }
        lcd.clear();
        lcd.setCursor(0, 0);
        lcd.print("Cases:");
        lcd.setCursor(7, 0);
        lcd.print(Cases);

        lcd.setCursor(0, 1);
        lcd.print("D:");
        lcd.setCursor(2, 1);
        lcd.print(Deaths);
     
        lcd.setCursor(8, 1);
        lcd.print("R:");
        lcd.setCursor(10, 1);
        lcd.print(Recovered);
}

Comments

Popular posts from this blog

operators in c program

nested-if

switch-statement