김유민gledel
Published

02 Sensor & Display

Bongilcheon High School Fab Lab Academy has submitted this project.

IntermediateProtip1.5 hours886
02 Sensor & Display

Things used in this project

Story

Read more

Schematics

untitled_sketch_03_znseT5yQQU.fzz

Code

Untitled file

Arduino
#include <LiquidCrystal.h>

const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

void setup(){
  lcd.begin(16, 2);
  lcd.print("hello, world!");
  delay(2000);
  lcd.clear();
}

void loop(){
  lcd.setCursor(0, 0);
  lcd.print("time : ");
  lcd.print(millis() / 1000);
  char second = 's';
  lcd.print(second);
}

Credits

김유민
9 projects • 2 followers
" Never do things others can do and will do if there are things others cannot do or will not do. "
gledel
100 projects • 116 followers
Looking back on my childhood, I was happy when I was making something and I was proud of myself. "Making is instinct!"

Comments