8000 Revert "readability improvements" · ijulanday/Arduino-PID-Library@090dd48 · GitHub
[go: up one dir, main page]

Skip to content

Commit 090dd48

Browse files
committed
Revert "readability improvements"
This reverts commit c4b29e4.
1 parent a85076d commit 090dd48

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

PID_v1.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@ class PID
1818
#define P_ON_E 1
1919
#define OUTMIN 900
2020
#define OUTMAX 2100
21-
#define T_SET 1500
2221

2322
//comm 7979 only used functions **************************************************************************
2423
PID(uint16_t*, uint16_t*, uint16_t*, // * constructor. links the PID to the Input, Output, and
2524
double, double, double, int, int, int); // Setpoint. Initial tuning parameters are also set here.
2625
// (overload for specifying proportional mode)
2726

28-
PID(uint16_t* input, uint16_t* output, uint16_t* setpoint, // * constructor. links the PID to the Input, Output, and
29-
double kp, double kd, double ki, int, int); // Setpoint. Initial tuning parameters are also set here
27+
PID(uint16_t*, uint16_t*, uint16_t*, // * constructor. links the PID to the Input, Output, and
28+
double, double, double, int, int); // Setpoint. Initial tuning parameters are also set here
3029

3130
void SetMode(int Mode); // * sets PID to either Manual (0) or Auto (non-0)
3231

0 commit comments

Comments
 (0)
0