From 4182edfc34184f1df7f8b8160b573b71a4248974 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 25 Sep 2014 14:32:06 +0300 Subject: [PATCH 1/4] PlatformIO-based manifest file Web: http://platformio.ikravets.com/#!/lib/show/Arduino-PID-AutoTune 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..fe08eca --- /dev/null +++ b/library.json @@ -0,0 +1,17 @@ +{ + "name": "Arduino-PID-AutoTune", + "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_AutoTune_v0", + "repository": + { + "type": "git", + "url": "https://github.com/br3ttb/Arduino-PID-AutoTune-Library.git" + } +} From f2f387dc59c1ac12d205fcdbd529c784330db588 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 10 Oct 2014 22:55:02 +0300 Subject: [PATCH 2/4] Add dependent library --- library.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/library.json b/library.json index fe08eca..e94dd00 100644 --- a/library.json +++ b/library.json @@ -13,5 +13,9 @@ { "type": "git", "url": "https://github.com/br3ttb/Arduino-PID-AutoTune-Library.git" - } + }, + "dependencies": + [ + "Arduino-PID" + ] } From 6a90926acd1a15a9c8a39a8482e92bfde0fdae6e Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 6 Dec 2014 23:31:34 +0200 Subject: [PATCH 3/4] Avoid trademark issues with library name --- library.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/library.json b/library.json index e94dd00..4b15dd6 100644 --- a/library.json +++ b/library.json @@ -1,8 +1,8 @@ { - "name": "Arduino-PID-AutoTune", + "name": "PID-AutoTune", "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", @@ -15,7 +15,11 @@ "url": "https://github.com/br3ttb/Arduino-PID-AutoTune-Library.git" }, "dependencies": - [ - "Arduino-PID" - ] + { + "name": "PID", + "authors": "Brett Beauregard", + "frameworks": "arduino" + }, + "frameworks": "arduino", + "platforms": "atmelavr" } From 86f8657ab2c3aa02946192344aa9f04551576f6d Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 11 Jul 2020 18:44:04 +0300 Subject: [PATCH 4/4] Bump version to 1.0.0 --- library.json | 1 + 1 file changed, 1 insertion(+) diff --git a/library.json b/library.json index 4b15dd6..2e59a23 100644 --- a/library.json +++ b/library.json @@ -1,5 +1,6 @@ { "name": "PID-AutoTune", + "version": "1.0.0", "keywords": "pid, integral, controller, industrial", "description": "A proportional-integral-derivative controller is a control loop feedback mechanism (controller) widely used in industrial control systems", "authors":