aboutsummaryrefslogtreecommitdiff
path: root/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde')
-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()
+{
+}