Untitled
Anonymous
plain_text
12/22/2021 5:37 PM
532 B
18
Indexable
#include <LiquidCrystal.h>
#include <Wire.h>
//#include <LiquidCrystal_PCF8574.h>
//LiquidCrystal_PCF8574 lcd(0x27);
LiquidCrystal lcd(12, 11, 5, 4, 3, 2, BACKLIGHT_ON, POSITIVE);
void setup() {
lcd.begin(20,4);
lcd.setBacklight(255);
lcd.setCursor(0, 0);
lcd.print("hello world" );
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
}
Editor is loading...