From 58667b65e518c4fee7cfc97d18e7e1cc96c11f95 Mon Sep 17 00:00:00 2001 From: marcoschwartz Date: Thu, 20 Aug 2015 07:59:32 +0200 Subject: [PATCH] initial commit --- LiquidCrystal_I2C.cpp | 9 +-------- library.json | 15 +++++++++++++++ library.properties | 9 +++++++++ 3 files changed, 25 insertions(+), 8 deletions(-) create mode 100644 library.json create mode 100644 library.properties diff --git a/LiquidCrystal_I2C.cpp b/LiquidCrystal_I2C.cpp index 4f1b787..23bc50c 100644 --- a/LiquidCrystal_I2C.cpp +++ b/LiquidCrystal_I2C.cpp @@ -1,11 +1,4 @@ -//YWROBOT -//last updated on 21/12/2011 -//Tim Starling Fix the reset bug (Thanks Tim) -//wiki doc http://www.dfrobot.com/wiki/index.php?title=I2C/TWI_LCD1602_Module_(SKU:_DFR0063) -//Support Forum: http://www.dfrobot.com/forum/ -//Compatible with the Arduino IDE 1.0 -//Library version:1.1 - +// Based on the work by DFRobot #include "LiquidCrystal_I2C.h" #include diff --git a/library.json b/library.json new file mode 100644 index 0000000..5a23a39 --- /dev/null +++ b/library.json @@ -0,0 +1,15 @@ +{ + "name": "LiquidCrystal_I2C", + "keywords": "LCD, liquidcrystal, I2C", + "description": "A library for DFRobot I2C LCD displays", + "repository": + { + "type": "git", + "url": "https://github.com/marcoschwartz/LiquidCrystal_I2C.git" + }, + "frameworks": "arduino", + "platforms": + [ + "atmelavr" + ] +} \ No newline at end of file diff --git a/library.properties b/library.properties new file mode 100644 index 0000000..2a2b11d --- /dev/null +++ b/library.properties @@ -0,0 +1,9 @@ +name=LiquidCrystal_I2C +version=1.1 +author=Marco Schwartz +maintainer=Marco Schwartz +sentence=A library for DFRobot I2C LCD displays. +paragraph=A library for DFRobot I2C LCD displays. It allows to control DFRobot I2C displays with commands similar to the Arduino LiquidCrystal library. +category=Display +url=https://github.com/marcoschwartz/LiquidCrystal_I2C +architectures=* \ No newline at end of file