From ea0b165c078db5412f13a237d2f47bd8d7f58d88 Mon Sep 17 00:00:00 2001 From: Greg Tan Date: Wed, 10 Feb 2016 21:39:10 +0800 Subject: [PATCH] Migrated to Arduino library format v2 --- library.properties | 10 ++++++++++ BigCrystal.cpp => src/BigCrystal.cpp | 0 BigCrystal.h => src/BigCrystal.h | 0 BigFont.c => src/BigFont.c | 0 BigFont.h => src/BigFont.h | 0 5 files changed, 10 insertions(+) create mode 100644 library.properties rename BigCrystal.cpp => src/BigCrystal.cpp (100%) rename BigCrystal.h => src/BigCrystal.h (100%) rename BigFont.c => src/BigFont.c (100%) rename BigFont.h => src/BigFont.h (100%) diff --git a/library.properties b/library.properties new file mode 100644 index 0000000..a3f575f --- /dev/null +++ b/library.properties @@ -0,0 +1,10 @@ +name=BigCrystal +version=2.0.0 +author=Greg Tan +maintainer=Greg Tan +sentence=A library that displays double height characters on LCD displays. +paragraph=The library works with LCD displays connected via 4 bit parallel, 8 bit parallel, I2C (using the PFC8573) and shift registers. For displays using I2C using the MCP2008 chipset (e.g. Adafruit backpack), use the BigCrystalTWI library. +category=Display +url=https://github.com/gregington/BigCrystal +architectures=* + diff --git a/BigCrystal.cpp b/src/BigCrystal.cpp similarity index 100% rename from BigCrystal.cpp rename to src/BigCrystal.cpp diff --git a/BigCrystal.h b/src/BigCrystal.h similarity index 100% rename from BigCrystal.h rename to src/BigCrystal.h diff --git a/BigFont.c b/src/BigFont.c similarity index 100% rename from BigFont.c rename to src/BigFont.c diff --git a/BigFont.h b/src/BigFont.h similarity index 100% rename from BigFont.h rename to src/BigFont.h