Posts

Showing posts from June, 2020

covid-19 display

Image
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                        ...