Skip to content

Commit d46dded

Browse files
committed
moved library code back to root from sub-folder
when github was adding a hash to the library download zip, there was confusion from beginners about needing to rename the unzipped folder before moving into the arduino ide. this library has been prepped (thijse) for the arduino library manager, which requires the library to be in the root directory. Having the library in the manager also removes the "beginner user hash" concern.
1 parent c61fb89 commit d46dded

File tree

10 files changed

+16
-20
lines changed

10 files changed

+16
-20
lines changed

PID_v1/PID_v1.cpp renamed to PID_v1.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**********************************************************************************************
2-
* Arduino PID Library - Version 1.0.1
2+
* Arduino PID Library - Version 1.1.1
33
* by Brett Beauregard <[email protected]> brettbeauregard.com
44
*
55
* This Library is licensed under a GPLv3 License

PID_v1/PID_v1.h renamed to PID_v1.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef PID_v1_h
22
#define PID_v1_h
3-
#define LIBRARY_VERSION 1.0.0
3+
#define LIBRARY_VERSION 1.1.1
44

55
class PID
66
{

PID_v1/library.properties

-9
This file was deleted.

README.txt

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
***************************************************************
2-
* Arduino PID Library - Version 1.1.0
3-
2+
* Arduino PID Library - Version 1.1.1
43
* by Brett Beauregard <[email protected]> brettbeauregard.com
5-
64
*
7-
85
* This Library is licensed under a GPLv3 License
9-
106
***************************************************************
117

12-
- To Use, copy the PID_v1 folder into the Arduino\Libraries directory
13-
148
- For an ultra-detailed explanation of why the code is the way it is, please visit:
15-
http://brettbeauregard.com/blog/2011/04/improving-the-beginners-pid-introduction/
9+
http://brettbeauregard.com/blog/2011/04/improving-the-beginners-pid-introduction/
10+
11+
- For function documentation see: http://playground.arduino.cc/Code/PIDLibrary
File renamed without changes.

PID_v1/library.json renamed to library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "PID",
33
"keywords": "PID, controller, signal",
4-
"description": "PID controller calculates an 'error' value as the difference between a measured input and a desired setpoint. The controller attempts to minimize the error by adjusting an output.",
4+
"description": "A PID controller seeks to keep some input variable close to a desired setpoint by adjusting an output. The way in which it does this can be 'tuned' by adjusting three parameters (P,I,D).",
55
"url": "http://playground.arduino.cc/Code/PIDLibrary",
66
"include": "PID_v1",
77
"authors":

library.properties

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name=PID
2+
version=1.1.1
3+
author=Brett Beauregard
4+
maintainer=Brett Beauregard
5+
sentence=PID controller
6+
paragraph=A PID controller seeks to keep some input variable close to a desired setpoint by adjusting an output. The way in which it does this can be 'tuned' by adjusting three parameters (P,I,D).
7+
category=Signal Input/Output
8+
url=http://playground.arduino.cc/Code/PIDLibrary
9+
architectures=*

0 commit comments

Comments
 (0)