Yo! I wanted to do a project where I use an RTC, a DHT11 and an LCD to display the current time/date and temp/humidity. I started with trying to output to the serial monitor from the DHT11 and RTC, which worked out competley fine, and now I tried to make a simple Hello World display text on the LCD, but I've been going at it for a couple of hours with no results.
The only thing I succesfully did was turning it on, turning the backlight on, and making the potentiometer work with the contrast (but only the upper row works?). I'll attach below the code that I used, and some relevant pictures.
Now, that is changed a bit, but I also used the default code from the arduino docs. I do not think/see an issue with the hardware wiring, but alas.


If you have any idea/want to see something clearer, respond to this post or shoot me a message on discord: "verd.
I just wanna finish this project lol. (sorry for bad photos/english, the works.)
The only thing I succesfully did was turning it on, turning the backlight on, and making the potentiometer work with the contrast (but only the upper row works?). I'll attach below the code that I used, and some relevant pictures.
Arduino Docs lcd code (changed a bit):
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2);
lcd.clear();
delay(500);
lcd.print("A");
}
void loop() {
}
Now, that is changed a bit, but I also used the default code from the arduino docs. I do not think/see an issue with the hardware wiring, but alas.



If you have any idea/want to see something clearer, respond to this post or shoot me a message on discord: "verd.
I just wanna finish this project lol. (sorry for bad photos/english, the works.)





