Skip to content

Commit fb095d8

Browse files
committed
Merge pull request #27 from sciunto/examples
enhance coding style Examples
2 parents d46dded + d7c61d2 commit fb095d8

File tree

3 files changed

+30
-19
lines changed

3 files changed

+30
-19
lines changed

examples/PID_AdaptiveTunings/PID_AdaptiveTunings.ino

+9-6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
#include <PID_v1.h>
1313

14+
#define PIN_INPUT 0
15+
#define PIN_OUTPUT 3
16+
1417
//Define Variables we'll be connecting to
1518
double Setpoint, Input, Output;
1619

@@ -24,7 +27,7 @@ PID myPID(&Input, &Output, &Setpoint, consKp, consKi, consKd, DIRECT);
2427
void setup()
2528
{
2629
//initialize the variables we're linked to
27-
Input = analogRead(0);
30+
Input = analogRead(PIN_INPUT);
2831
Setpoint = 100;
2932

3033
//turn the PID on
@@ -33,10 +36,10 @@ void setup()
3336

3437
void loop()
3538
{
36-
Input = analogRead(0);
37-
39+
Input = analogRead(PIN_INPUT);
40+
3841
double gap = abs(Setpoint-Input); //distance away from setpoint
39-
if(gap<10)
42+
if (gap < 10)
4043
{ //we're close to setpoint, use conservative tuning parameters
4144
myPID.SetTunings(consKp, consKi, consKd);
4245
}
@@ -45,9 +48,9 @@ void loop()
4548
//we're far from setpoint, use aggressive tuning parameters
4649
myPID.SetTunings(aggKp, aggKi, aggKd);
4750
}
48-
51+
4952
myPID.Compute();
50-
analogWrite(3,Output);
53+
analogWrite(PIN_OUTPUT, Output);
5154
}
5255

5356

examples/PID_Basic/PID_Basic.ino

+8-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,20 @@
55

66
#include <PID_v1.h>
77

8+
#define PIN_INPUT 0
9+
#define PIN_OUTPUT 3
10+
811
//Define Variables we'll be connecting to
912
double Setpoint, Input, Output;
1013

1114
//Specify the links and initial tuning parameters
12-
PID myPID(&Input, &Output, &Setpoint,2,5,1, DIRECT);
15+
double Kp=2, Ki=5, Kd=1;
16+
PID myPID(&Input, &Output, &Setpoint, Kp, Ki, Kd, DIRECT);
1317

1418
void setup()
1519
{
1620
//initialize the variables we're linked to
17-
Input = analogRead(0);
21+
Input = analogRead(PIN_INPUT);
1822
Setpoint = 100;
1923

2024
//turn the PID on
@@ -23,9 +27,9 @@ void setup()
2327

2428
void loop()
2529
{
26-
Input = analogRead(0);
30+
Input = analogRead(PIN_INPUT);
2731
myPID.Compute();
28-
analogWrite(3,Output);
32+
analogWrite(PIN_OUTPUT, Output);
2933
}
3034

3135

examples/PID_RelayOutput/PID_RelayOutput.ino

+13-9
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,32 @@
77
*
88
* to connect them together we use "time proportioning
99
* control" it's essentially a really slow version of PWM.
10-
* first we decide on a window size (5000mS say.) we then
10+
* first we decide on a window size (5000mS say.) we then
1111
* set the pid to adjust its output between 0 and that window
1212
* size. lastly, we add some logic that translates the PID
13-
* output into "Relay On Time" with the remainder of the
13+
* output into "Relay On Time" with the remainder of the
1414
* window being "Relay Off Time"
1515
********************************************************/
1616

1717
#include <PID_v1.h>
18-
#define RelayPin 6
18+
19+
#define PIN_INPUT 0
20+
#define RELAY_PIN 6
1921

2022
//Define Variables we'll be connecting to
2123
double Setpoint, Input, Output;
2224

2325
//Specify the links and initial tuning parameters
24-
PID myPID(&Input, &Output, &Setpoint,2,5,1, DIRECT);
26+
double Kp=2, Ki=5, Kd=1;
27+
PID myPID(&Input, &Output, &Setpoint, Kp, Ki, Kd, DIRECT);
2528

2629
int WindowSize = 5000;
2730
unsigned long windowStartTime;
31+
2832
void setup()
2933
{
3034
windowStartTime = millis();
31-
35+
3236
//initialize the variables we're linked to
3337
Setpoint = 100;
3438

@@ -41,18 +45,18 @@ void setup()
4145

4246
void loop()
4347
{
44-
Input = analogRead(0);
48+
Input = analogRead(PIN_INPUT);
4549
myPID.Compute();
4650

4751
/************************************************
4852
* turn the output pin on/off based on pid output
4953
************************************************/
50-
if(millis() - windowStartTime>WindowSize)
54+
if (millis() - windowStartTime > WindowSize)
5155
{ //time to shift the Relay Window
5256
windowStartTime += WindowSize;
5357
}
54-
if(Output < millis() - windowStartTime) digitalWrite(RelayPin,HIGH);
55-
else digitalWrite(RelayPin,LOW);
58+
if (Output < millis() - windowStartTime) digitalWrite(RELAY_PIN, HIGH);
59+
else digitalWrite(RELAY_PIN, LOW);
5660

5761
}
5862

0 commit comments

Comments
 (0)