Skip to content

BetterWayElectronics/esp8266-corona-tracking-i2c-oled

 
 

Repository files navigation

ESP8266 Corona Tracking with a I2C OLED

Modified to accomidate proper GET URL's and the 0.9" 128x32 I2C OLED
Though I have also added my own take on a 16x2 I2C LCD version!

  1. Change your wifi information from WifiConnect.h file
  • char ssid[32] = "yourssid";
  • char password[64] = "yourpass";
  1. Modify the HTTP (NOT HTTPS) GET URL

    Examples:

  2. Modify the JSON Values to match the output (Browse directly or look at serial monitor)

    Examples:

    • int confirmed = (int)get_json_value(JsonArray, "confirmed", INT);
    • int deaths = (int)get_json_value(JsonArray, "deaths", INT);
    • int recovered = (int)get_json_value(JsonArray, "recovered", INT);

GitHub Logo

Releases

No releases published

Packages

No packages published

Languages

  • C 76.4%
  • C++ 23.6%