From d4a93e74d36114599760fa6a73dc1ca31d13f161 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 25 Sep 2014 14:30:42 +0300 Subject: [PATCH 1/2] PlatformIO-based manifest file Web: http://platformio.ikravets.com/#!/lib/show/Arduino-PID Docs: http://docs.platformio.ikravets.com/en/latest/librarymanager/index.html --- library.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..75dd278 --- /dev/null +++ b/library.json @@ -0,0 +1,17 @@ +{ + "name": "Arduino-PID", + "keywords": "pid, integral, controller, industrial", + "description": "A proportional-integral-derivative controller is a control loop feedback mechanism (controller) widely used in industrial control systems", + "author": + { + "name": "Brett Beauregard", + "email": "br3ttb@gmail.com", + "url": "https://github.com/br3ttb" + }, + "include": "PID_v1", + "repository": + { + "type": "git", + "url": "https://github.com/br3ttb/Arduino-PID-Library.git" + } +} From 7a5733938cc4efedad89210cadba9152c3678b1a Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 6 Dec 2014 23:27:41 +0200 Subject: [PATCH 2/2] Avoid trademark issues with library name --- library.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/library.json b/library.json index 75dd278..75d6c2f 100644 --- a/library.json +++ b/library.json @@ -1,8 +1,8 @@ { - "name": "Arduino-PID", + "name": "PID", "keywords": "pid, integral, controller, industrial", "description": "A proportional-integral-derivative controller is a control loop feedback mechanism (controller) widely used in industrial control systems", - "author": + "authors": { "name": "Brett Beauregard", "email": "br3ttb@gmail.com", @@ -13,5 +13,7 @@ { "type": "git", "url": "https://github.com/br3ttb/Arduino-PID-Library.git" - } + }, + "frameworks": "arduino", + "platforms": "atmelavr" }