Skip to content

Commit 1f2a144

Browse files
FoRTuFoRTu
authored andcommitted
Codigo para Arduino.
1 parent 8189cf7 commit 1f2a144

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Proyecto_4/Codigo/Codigo.ino

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#include <LiquidCrystal.h>
2+
3+
LiquidCrystal lcd(12,10,11,5,4,3,2);
4+
5+
void setup() {
6+
lcd.begin(16, 2);
7+
lcd.print("hello, world!");
8+
}
9+
10+
void loop() {
11+
lcd.setCursor(0, 1);
12+
lcd.print(millis()/1000);
13+
}

0 commit comments

Comments
 (0)