aboutsummaryrefslogtreecommitdiff
path: root/libraries/LiquidCrystal/examples/HelloWorld
diff options
context:
space:
mode:
authorDavid A. Mellis <d.mellis@arduino.cc>2008-04-19 03:31:36 +0000
committerDavid A. Mellis <d.mellis@arduino.cc>2008-04-19 03:31:36 +0000
commit2d5bc015fbd70befc08c2295630ff06770e9d7c8 (patch)
tree0b2b41ab905ce47067d3365861aced34f89caa9c /libraries/LiquidCrystal/examples/HelloWorld
parente8465fbb4500ed3968e7a06c2d75a5b3f1841b8e (diff)
Adding LiquidCrystal library.
Diffstat (limited to 'libraries/LiquidCrystal/examples/HelloWorld')
-rw-r--r--libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde12
1 files changed, 12 insertions, 0 deletions
diff --git a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde
new file mode 100644
index 0000000..d514215
--- /dev/null
+++ b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde
@@ -0,0 +1,12 @@
+#include <LiquidCrystal.h>
+
+LiquidCrystal lcd(12, 11, 2, 7, 8, 9, 10);
+
+void setup()
+{
+ lcd.print("hello, world!");
+}
+
+void loop()
+{
+}