From 49d1760fe9ae82f4ac2179f51c2b588d05b60a06 Mon Sep 17 00:00:00 2001 From: lewisxhe Date: Mon, 8 Apr 2024 10:04:51 +0800 Subject: [PATCH] Update library.properties --- library.json | 49 ++++++++++++++++++++++++++++++++++++++++++++++ library.properties | 6 +++--- 2 files changed, 52 insertions(+), 3 deletions(-) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..57a6017 --- /dev/null +++ b/library.json @@ -0,0 +1,49 @@ +{ + "name": "LilyGo-EPD47", + "version": "1.0.0", + "description": "LilyGo epaper 4.7 inches Arduino library", + "keywords": "lilygo,epaper", + "authors": [ + { + "name": "Xinyuan-LilyGO", + "url": "https://github.com/Xinyuan-LilyGO" + }, + { + "name": "LewisHe", + "url": "https://github.com/lewisxhe", + "maintainer": true + } + ], + "repository": { + "type": "git", + "url": "https://github.com/Xinyuan-LilyGO/LilyGo-EPD47.git" + }, + "homepage": "https://github.com/Xinyuan-LilyGO/LilyGo-EPD47", + "export": { + "include": [ + "LICENSE", + "library.json", + "library.properties", + "README.md", + "keywords.txt", + "src/*", + "examples/*" + ] + }, + "dependencies": [ + { + "owner": "lennarthennigs", + "name": "Button2", + "version": "2.3.2" + }, + { + "owner": "lewisxhe", + "name": "SensorLib", + "version": "0.1.9" + } + ], + "examples": ["examples/*/*.ino"], + "frameworks": ["arduino"], + "platforms": "esp32", + "headers": "epd_driver.h" +} diff --git a/library.properties b/library.properties index 1cb70e9..19ad1d1 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ -name=LilyGoEPD47 -version=0.3.0 +name=LilyGo-EPD47 +version=1.0.0 author=LilyGO maintainer=LilyGO sentence=LilyGo 4.7 inch ink screen driver library @@ -8,4 +8,4 @@ category=Display url=https://github.com/Xinyuan-LilyGO/LilyGo-EPD47 architectures=esp32 includes=* -depends=Wire +depends=Wire, SensorLib, Button2