Home
About
Contact
Home
Home
Arduino lcd interfacing circuit
Arduino lcd interfacing circuit
electrotechys media
December 16, 2018
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2);
lcd.print("hello, world!");
}
void loop() {
lcd.setCursor(0, 1);
lcd.print(millis() / 1000);
}
Post a Comment
0 Comments
Popular Posts
0 Comments