We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 778fcd8 commit c0c65c7Copy full SHA for c0c65c7
1 file changed
XRPLib/controller.py
@@ -3,11 +3,11 @@ class Controller:
3
An abstract class to be entended to demonstrate different types of control. A PID subclass has also been provided
4
"""
5
6
- def tick(self, input) -> float:
+ def update(self, input) -> float:
7
8
- Handle a new tick of this control loop given an effected input.
+ Handle a new ypdate of this control loop given an effected input.
9
10
- :param error: The input to this controller for a given tick. Usually an error or some other correctable value
+ :param error: The input to this controller for a given update. Usually an error or some other correctable value
11
:type error: float
12
13
:return: The system output from the controller, to be used as an effort value or for any other purpose
0 commit comments