JarAfmat:
void setup() {
analogWrite(8, Contrast);
lcd.begin(16,2);
Serial.begin(115200);
Serial.println("Starting");
}
void loop () {
lcd.setCursor(0,0);
lcd.print("ghfgh");
delay(500);
Serial.println("Starting");
}
I removed my code, and only left this inside and it still doesn't work. Running on esp8266 generic board. It's the same error as above
Is that code (which again is a snippet - it misses not only essential includes and variable contrast is not declared) running on the Arduino or on the ESP8266? If the latter, what is that lcd code doing there? If on the Arduino, where's the offending code?