-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
10 changed files
with
16 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/********************************************************************************************** | ||
* Arduino PID Library - Version 1.0.1 | ||
* Arduino PID Library - Version 1.1.1 | ||
* by Brett Beauregard <[email protected]> brettbeauregard.com | ||
* | ||
* This Library is licensed under a GPLv3 License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#ifndef PID_v1_h | ||
#define PID_v1_h | ||
#define LIBRARY_VERSION 1.0.0 | ||
#define LIBRARY_VERSION 1.1.1 | ||
|
||
class PID | ||
{ | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
*************************************************************** | ||
* Arduino PID Library - Version 1.1.0 | ||
|
||
* Arduino PID Library - Version 1.1.1 | ||
* by Brett Beauregard <[email protected]> brettbeauregard.com | ||
|
||
* | ||
|
||
* This Library is licensed under a GPLv3 License | ||
|
||
*************************************************************** | ||
|
||
- To Use, copy the PID_v1 folder into the Arduino\Libraries directory | ||
|
||
- For an ultra-detailed explanation of why the code is the way it is, please visit: | ||
http://brettbeauregard.com/blog/2011/04/improving-the-beginners-pid-introduction/ | ||
http://brettbeauregard.com/blog/2011/04/improving-the-beginners-pid-introduction/ | ||
|
||
- For function documentation see: http://playground.arduino.cc/Code/PIDLibrary |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name=PID | ||
version=1.1.1 | ||
author=Brett Beauregard | ||
maintainer=Brett Beauregard | ||
sentence=PID controller | ||
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). | ||
category=Signal Input/Output | ||
url=http://playground.arduino.cc/Code/PIDLibrary | ||
architectures=* |