No text LCD+i2c (Esp8266 Nodemcu 1.0)
Posted: Wed Dec 21, 2016 3:22 pm
Hi guys, I'm new here (and in the world of ESP kkk)
I'm from Brazil, so... please don't judge my BAD English.
I'm trying to make a basic thing... just connect the LCD display into a Esp, but is not working...
I'm using:
ESP8266 Nodemcu 1.0
LCD display 16x2 1602A v2.0
i2c FC-113
Arduino IDE
Connections:
GND > GND
VCC > 3v
SDA > D2
SCL > D1
I read a lot of guides in the internet and unfortunately my LCD display don't show any text... This is my "code" for test, the LED blink okay, but no text, just a blue light...
Thanks for any help
I'm from Brazil, so... please don't judge my BAD English.
I'm trying to make a basic thing... just connect the LCD display into a Esp, but is not working...
I'm using:
ESP8266 Nodemcu 1.0
LCD display 16x2 1602A v2.0
i2c FC-113
Arduino IDE
Connections:
GND > GND
VCC > 3v
SDA > D2
SCL > D1
I read a lot of guides in the internet and unfortunately my LCD display don't show any text... This is my "code" for test, the LED blink okay, but no text, just a blue light...
Code: Select all
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd (0x27,16,2);
void setup(){
lcd.begin(16, 2);
lcd.init();
lcd.backlight();
lcd.setCursor(1, 0);
lcd.print("TEST");
lcd.setCursor(1, 1);
lcd.print("2TEST2");
pinMode(2, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(2, LOW);
delay(1000);
digitalWrite(2, HIGH);
}
Thanks for any help