Hello everyone, I’m currently using an Arduino Nano 33 BLE and my LCD display is the MC20805A6W-BNMLWI-V2. However, I can’t get it to display "Hello World". I really need help—it's urgent.
My code is:
#include <Wire.h>
#include <LCD_ST7032.h>
// Create LCD object
LCD_ST7032 LCD;
void setup() {
lcd.begin(8, 2); // 8 columns, 2 rows
lcd.print("Hello,");
lcd.setCursor(0, 1);
lcd.print("World!");
}
void loop() {
}