I've uploaded the shematic and this is how i initialise the resources in code :
#include <ArduinoJson.h>
#include <ESP8266WiFi.h>
#include <WiFiClientSecure.h>
#include <LiquidCrystal.h>
const int Contrast=100;
const char* ssid = ".....";
const char* password = "......";
const char* host = "......";
const int httpsPort = 443;
WiFiClientSecure client;
LiquidCrystal lcd(12, 11, 8, 6, 5, 3);
void setup() {
//set the contrast on display
analogWrite(8, Contrast);
lcd.begin(16,2);
Serial.begin(115200);
Serial.println("Starting");
//do wifi code and get requests
.....
}
void loop () {
lcd.setCursor(0,0);
Serial.println("Starting");
delay(500);
}
