Skip to content

Commit eef81ef

Browse files
committed
Update README.md
1 parent beac91d commit eef81ef

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Development began with a fork of the Arduino PID Library. Some modifications and
3030

3131
### Functions
3232

33-
[QuickPID Constructor](#QuickPID Constructor)
33+
[QuickPID_Constructor](#QuickPID_Constructor)
3434

3535
[Compute](#Compute)
3636

@@ -46,9 +46,9 @@ Development began with a fork of the Arduino PID Library. Some modifications and
4646

4747
[SetControllerDirection](#SetControllerDirection)
4848

49-
[Display Functions](#Display Functions)
49+
[Display_Functions](#Display_Functions)
5050

51-
[Utility Functions](#Utility Functions)
51+
[Utility_Functions](#Utility_Functions)
5252

5353
### Self Test Example (RC Filter):
5454

@@ -69,7 +69,7 @@ The new `kpi` and `kpd` parameters are calculated in the `SetTunings()` function
6969
kpd = kp * (1 - pOn) + kd;
7070
```
7171

72-
#### QuickPID Constructor
72+
#### QuickPID_Constructor
7373

7474
```c++
7575
QuickPID::QuickPID(int16_t* Input, int16_t* Output, int16_t* Setpoint,
@@ -150,7 +150,7 @@ void QuickPID::SetControllerDirection(bool Direction)
150150
151151
The PID will either be connected to a DIRECT acting process (+Output leads to +Input) or a REVERSE acting process (+Output leads to -Input.) We need to know which one, because otherwise we may increase the output when we should be decreasing. This is called from the constructor.
152152
153-
#### Display Functions
153+
#### Display_Functions
154154
155155
```c++
156156
float QuickPID::GetKp()
@@ -163,7 +163,7 @@ int16_t QuickPID::GetError()
163163

164164
These functions query the internal state of the PID. They're here for display purposes.
165165

166-
#### Utility Functions
166+
#### Utility_Functions
167167

168168
```c++
169169
int QuickPID::analogReadFast(int ADCpin)

0 commit comments

Comments
 (0)