From c40724514c1d72d2dabf56b26a7fca16bd90e437 Mon Sep 17 00:00:00 2001 From: Fede85 Date: Wed, 26 Jun 2013 19:13:04 +0200 Subject: [PATCH] Ethernet, SD and LiquidCrystal to the new library format --- library.properties | 10 ++++++++++ LiquidCrystal.cpp => src/LiquidCrystal.cpp | 0 LiquidCrystal.h => src/LiquidCrystal.h | 0 3 files changed, 10 insertions(+) create mode 100644 library.properties rename LiquidCrystal.cpp => src/LiquidCrystal.cpp (100%) rename LiquidCrystal.h => src/LiquidCrystal.h (100%) diff --git a/library.properties b/library.properties new file mode 100644 index 0000000..2fc0606 --- /dev/null +++ b/library.properties @@ -0,0 +1,10 @@ +name=LiquidCrystal +author= +email=info@arduino.cc +sentence=The library to write on an alphanumeric LCD display. +paragraph=This library allows an Arduino board to control LiquidCrystal displays (LCDs) based on the Hitachi HD44780 (or a compatible) chipset, which is found on most text-based LCDs. The library works with in either 4- or 8-bit mode (i.e. using 4 or 8 data lines in addition to the rs, enable, and, optionally, the rw control lines). +url=http://arduino.cc/en/Reference/LiquidCrystal +architectures=avr, sam +version=1.0 +dependencies= none +core-dependencies=arduino (>=1.5.0) diff --git a/LiquidCrystal.cpp b/src/LiquidCrystal.cpp similarity index 100% rename from LiquidCrystal.cpp rename to src/LiquidCrystal.cpp diff --git a/LiquidCrystal.h b/src/LiquidCrystal.h similarity index 100% rename from LiquidCrystal.h rename to src/LiquidCrystal.h