Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
SurtrTech
Published © GPL3+

Keep Track of COVID-19 Outbreak in Your Country

Using ESP8266 12E, and a TFL RGB LCD with ThingHTTP and get the data from worldOmeters. info

BeginnerFull instructions provided1 hour2,439
Keep Track of COVID-19 Outbreak in Your Country

Things used in this project

Hardware components

ESP8266 ESP-12E
Espressif ESP8266 ESP-12E
×1
1.8 128x160 RGB TFT LCD
×1

Software apps and online services

ThingSpeak API
ThingSpeak API
World O Meters
Arduino IDE
Arduino IDE

Story

Read more

Schematics

Wiring

Code

COVID-19_Tracker.ino

Arduino
/* This code works with ESP8266 12E (NodeMcu v1.0) its main function is to read the data from https://www.worldometers.info/
 * Through ThingSpeak app ThingHTTP and displays on the Serial monitor
 * Refer to www.SurtrTech.com for more details and video about the project
 * This project was created during the COVID-19 Pandemic and the example here used to track the numbers in Italy  
 */

#include <ESP8266WiFi.h>        //Use ESP8266 functions                                              
#include <ESP8266HTTPClient.h>

                                                                       
const char* ssid = "Tenda_2EA648";              //Your router SSID and password                             
const char* password =  "Y@ssine1991"; 
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=12WW2L8UDXUZV0VA";     //Those URLs are mine but I kept them so you can replace the key only
const char* url2 = "/apps/thinghttp/send_request?api_key=LE11LAN099543GEG";
const char* url3 = "/apps/thinghttp/send_request?api_key=UW6VMKBE0W8M9OC3"; 

int To_remove;      //There are some irrelevant data on the string and here's how I keep the index
                    //of those characters 

String Cases,Death,Recover,Data_Raw;  //Here I keep the numbers that I got

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

void setup() {
  
  Serial.begin(9600);            //Start the serial communication 
                                                               
 
  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()); 
  
}

//In the loop I read every URL separately and I get the data string then I remove the unecessary characters
//I keep only the values that I can display either on the serial monitor or the display
//I believe that this part is repeated 3 times and can be set on a single function that can be called
//Keep updated on www.SurtrTech.com for an optimized code  

 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

              Serial.print("Cases (RAW value): ");  //I choosed to display it on the serial monitor to help you debug
              Serial.println(Data_Raw);
                                                    
              To_remove = Data_Raw.indexOf(">");                      //I look for the position of this symbol ">"                                 
              Data_Raw.remove(0,To_remove+1);                        //I remove it and everything that's before
              To_remove = Data_Raw.indexOf("<");                     //I look for the position of this symbol ">"                                
              Data_Raw.remove(To_remove,Data_Raw.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;
              Serial.print("Cases: ");  //I choosed to display it on the serial monitor to help you debug
              Serial.println(Cases);                                               
                                                                                        
            }
        }
        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");
      }

//Reading 2 is the same thing as reading 1

      if( http.begin(host,httpPortRead,url2))                                              
      {
        int httpCode = http.GET();                                                      
        if (httpCode > 0)                                                               
        {
          if (httpCode == HTTP_CODE_OK || httpCode == HTTP_CODE_MOVED_PERMANENTLY) 
            {                
              
              Data_Raw = http.getString();   
              
              Serial.print("Deaths (RAW value): ");
              Serial.println(Data_Raw);
                                                    
              To_remove = Data_Raw.indexOf(">");                                   
              Data_Raw.remove(0,To_remove+1); 
              To_remove = Data_Raw.indexOf("<");                                   
              Data_Raw.remove(To_remove,Data_Raw.length());

              Death=Data_Raw;
              Serial.print("Deaths: ");
              Serial.println(Death);

                                                                
                                                                                        
            }
        }
        else 
        {
          Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
        }



        http.end();                                                                 
      } 
    else 
      {
        Serial.printf("[HTTP} Unable to connect\n");
      }

//Reading 3 is the same thing as reading 1

      if( http.begin(host,httpPortRead,url3))                                              
      {
        int httpCode = http.GET();                                                      
        if (httpCode > 0)                                                               
        {
          if (httpCode == HTTP_CODE_OK || httpCode == HTTP_CODE_MOVED_PERMANENTLY) 
            {                
              
              Data_Raw = http.getString();   

              Serial.print("Recoveries (RAW value): ");
              Serial.println(Data_Raw);
                                                    
              To_remove = Data_Raw.indexOf(">");                                   
              Data_Raw.remove(0,To_remove+1); 
              To_remove = Data_Raw.indexOf("<");                                   
              Data_Raw.remove(To_remove,Data_Raw.length());

              Recover=Data_Raw;
              Serial.print("Recoveries: ");
              Serial.println(Recover);
                                                                 
                                                                                        
            }
        }
        else 
        {
          Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
        }

        http.end();                                                                 
      } 
    else 
      {
        Serial.printf("[HTTP} Unable to connect\n");
      }
    
    delay(5000);

    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);                                                             
      }

} 
  

COVID-19_Tracker_TFTLCD.ino

Arduino
/* This code works with ESP8266 12E (NodeMcu v1.0) its main function is to read the data from https://www.worldometers.info/
 * Through ThingSpeak app ThingHTTP and display it on the 1.8" TFT RGB LCD 
 * Refer to www.SurtrTech.com for more details and video about the project
 * This project was created during the COVID-19 Pandemic and the example here used to track the numbers in Italy  
 */

#include <Adafruit_GFX.h>       //Libraries required to use the Display
#include <Adafruit_ST7735.h> 
#include <SPI.h>

#include <ESP8266WiFi.h>        //Use ESP8266 functions                                              
#include <ESP8266HTTPClient.h>

#define TFT_CS         D1      //Display pins
#define TFT_RST        D0
#define TFT_DC         D2
                                                                       
const char* ssid = "xxxx";              //Your router SSID and password                             
const char* password =  "xxxxx"; 
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=12WW2L8UDXUZV0VA";     //Those URLs are mine but I kept them so you can replace the key only
const char* url2 = "/apps/thinghttp/send_request?api_key=LE11LAN099543GEG";
const char* url3 = "/apps/thinghttp/send_request?api_key=UW6VMKBE0W8M9OC3"; 

int To_remove;      //There are some irrelevant data on the string and here's how I keep the index
                    //of those characters 

String Cases,Death,Recover,Data_Raw;  //Here I keep the numbers that I got

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

Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST); //Those things are for the display
float p = 3.1415926;

void setup() {
  
  Serial.begin(9600);            //Start the serial communication and the display
  tft.initR(INITR_GREENTAB);                                                              
 
  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()); 
  
}

//In the loop I read every URL separately and I get the data string then I remove the unecessary characters
//I keep only the values that I can display either on the serial monitor or the display
//I believe that this part is repeated 3 times and can be set on a single function that can be called
//Keep updated on www.SurtrTech.com for an optimized code  

 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

              Serial.print("Cases (RAW value) :");  //I choosed to display it on the serial monitor to help you debug
              Serial.println(Data_Raw);
                                                    
              To_remove = Data_Raw.indexOf(">");                      //I look for the position of this symbol ">"                                 
              Data_Raw.remove(0,To_remove+1);                        //I remove it and everything that's before
              To_remove = Data_Raw.indexOf("<");                     //I look for the position of this symbol ">"                                
              Data_Raw.remove(To_remove,Data_Raw.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;
                                                                 
                                                                                        
            }
        }
        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");
      }

//Reading 2 is the same thing as reading 1

      if( http.begin(host,httpPortRead,url2))                                              
      {
        int httpCode = http.GET();                                                      
        if (httpCode > 0)                                                               
        {
          if (httpCode == HTTP_CODE_OK || httpCode == HTTP_CODE_MOVED_PERMANENTLY) 
            {                
              
              Data_Raw = http.getString();   
              
              Serial.print("Deaths (RAW value) :");
              Serial.println(Data_Raw);
                                                    
              To_remove = Data_Raw.indexOf(">");                                   
              Data_Raw.remove(0,To_remove+1); 
              To_remove = Data_Raw.indexOf("<");                                   
              Data_Raw.remove(To_remove,Data_Raw.length());

              Death=Data_Raw;

                                                                
                                                                                        
            }
        }
        else 
        {
          Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
        }



        http.end();                                                                 
      } 
    else 
      {
        Serial.printf("[HTTP} Unable to connect\n");
      }

//Reading 3 is the same thing as reading 1

      if( http.begin(host,httpPortRead,url3))                                              
      {
        int httpCode = http.GET();                                                      
        if (httpCode > 0)                                                               
        {
          if (httpCode == HTTP_CODE_OK || httpCode == HTTP_CODE_MOVED_PERMANENTLY) 
            {                
              
              Data_Raw = http.getString();   

              Serial.print("Recoveries (RAW value) :");
              Serial.println(Data_Raw);
                                                    
              To_remove = Data_Raw.indexOf(">");                                   
              Data_Raw.remove(0,To_remove+1); 
              To_remove = Data_Raw.indexOf("<");                                   
              Data_Raw.remove(To_remove,Data_Raw.length());

              Recover=Data_Raw;
                                                                 
                                                                                        
            }
        }
        else 
        {
          Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
        }

        http.end();                                                                 
      } 
    else 
      {
        Serial.printf("[HTTP} Unable to connect\n");
      }
    Print_TFT();  //Display to the TFT LCD, this function will vary depending on your display
    delay(5000);

    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);                                                             
      }

} 
  



void Print_TFT(){
  tft.fillScreen(ST77XX_BLACK);
  tft.setTextWrap(false);
  tft.setCursor(20, 10);    //Horiz/Vertic
  tft.setTextSize(2);
  tft.setTextColor(ST77XX_GREEN);
  tft.print("Italy");

  tft.setCursor(15, 30);    //Horiz/Vertic
  tft.setTextSize(1);
  tft.setTextColor(ST77XX_WHITE);
  tft.print("COVID-19 Tracker");

  tft.setCursor(0, 55);    //Horiz/Vertic
  tft.setTextSize(2);
  tft.setTextColor(ST77XX_BLUE);
  tft.print("Cases");
  tft.setCursor(0, 80);
  tft.print(Cases);  

  tft.setCursor(0, 115);    //Horiz/Vertic
  tft.setTextSize(1);
  tft.setTextColor(ST77XX_GREEN);
  tft.print("RECOVERED");
  tft.setCursor(60, 115);
  tft.setTextColor(ST77XX_WHITE);
  tft.print(Recover); 


  tft.fillRect(0, 138 , 38, 10, ST77XX_WHITE); 
  tft.setCursor(2, 140);    //Horiz/Vertic
  tft.setTextSize(1);
  tft.setTextColor(ST77XX_BLACK);
  tft.print("DEATHS");
  tft.setCursor(60, 140);
  tft.setTextColor(ST77XX_WHITE);
  tft.print(Death);
}

COVID-19_Tracker_Update_1.ino

Arduino
/* This code works with ESP8266 12E (NodeMcu v1.0) its main function is to read the data from https://www.worldometers.info/
 * Through ThingSpeak app ThingHTTP and displays on the Serial monitor
 * Refer to www.SurtrTech.com for more details and video about the project
 * This project was created during the COVID-19 Pandemic and the example here used to track the numbers in Italy  
 */

#include <ESP8266WiFi.h>        //Use ESP8266 functions                                              
#include <ESP8266HTTPClient.h>
                                                                       
const char* ssid = "xxxx";              //Your router SSID and password                             
const char* password =  "xxxx"; 
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=01Z5FQFZLTTX8WUN";     //This URL is mine but I kept it so you can replace the key only

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() {
  
  Serial.begin(9600);            //Start the serial communication 
                                                               
 
  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()); 
  
}

//In the loop I read every URL separately and I get the data string then I remove the unecessary characters
//I keep only the values that I can display either on the serial monitor or the display
//I believe that this part is repeated 3 times and can be set on a single function that can be called
//Keep updated on www.SurtrTech.com for an optimized code  

 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");
      }

    
    delay(5000);

    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);                                                             
      }

} 
  

ST7735 Display library

Adafruit GFX Library

Credits

SurtrTech
9 projects • 207 followers
YT Channel bit.ly/35Ai76l, run by Automation and Electrical Engineer, Electronics amateur, no IT background so you may see wreckage in codes
Contact

Comments

Please log in or sign up to comment.