#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C LCD = LiquidCrystal_I2C(0x27, 16, 2);
void setup() {
Serial.begin(115200);
Wire.begin(6,7);
LCD.init();
LCD.backlight();
LCD.setCursor(0, 0);
LCD.print("Hey kut!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}
Loading
esp32-c6-devkitc-1
esp32-c6-devkitc-1