Why isn't My Date displayed on the LCD?

Tried to display the current date on an LCD display. The following was used: – Arduino Uno R3 – DS1307 Module V03 – LCD1602 module – 10k potentiometer – Pair of cables My code: #include <Wire.h> #include <RTClib.h> #include <LiquidCrystal.h> RTC_DS3231 rtc; LiquidCrystal lcd(12, 11, 5, 4, 3, 2); // RS, E, D4, D5, D6,…

Arduino LCD with two rows via I2C?

Good morning, I would like to connect the LCD display "DEM 20231 SYH-PY" from Display Elektronik to my Arduino R4 Minima via I2C serial adapter (this model: https://www.amazon.de/AZDelivery-Adapter-serielle-Schnittstelle-Display/dp/B01MFB4743?pd_rd_w=2Ynxz) . I actually wired everything correctly, but the screen doesn't display anything. Since this LCD display has two rows of connectors, I'm wondering if there's anything special…

Nextion TFT display acting up because of Arduino code?

Good evening I have a question regarding a Nextion touchscreen. We're currently implementing a small project with it. The goal is to program a dart counter using the display and an Arduino. We also have an LCD for the score display. Now, to my problem. Up until now, everything was working great. But suddenly, the…