top of page
LCD Code
Copy and paste the code below into Arduino create
#include <LiquidCrystal.h>
LiquidCrystal lcd(1, 2, 4, 5, 6, 7);
void setup() {
lcd.begin(16,2);
}
void loop() {
lcd.print("Certamen Machine");
delay(3000); // 3 seconds delay
lcd.setCursor(0,1);
lcd.print("Test 2 Complete");
lcd.setCursor(0,0);
}
bottom of page