Skip to content

Commit 8b6dc3d

Browse files
committed
Add PID controller implementation
1 parent dfb637b commit 8b6dc3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

control_algorithms/pid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313

14-
class pid:
14+
class PID:
1515
def __init__(self, Kp: float, Ki: float, Kd: float, setpoint: float = 0):
1616
"""
1717
Initialize the PID controller.

0 commit comments

Comments
 (0)