2025-01-13 16:53:46 +01:00
|
|
|
from GCode_Interpreterdc import GCodeToMotors
|
|
|
|
|
|
|
|
class Controller:
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __call__(self, gtm, *args, **kwargs):
|
|
|
|
assert isinstance(gtm, GCodeToMotors)
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
class PIDController(Controller):
|
|
|
|
def __call__(self, gtm, *args, **kwargs):
|
2025-01-13 17:24:42 +01:00
|
|
|
self.
|
2025-01-13 16:53:46 +01:00
|
|
|
|
|
|
|
|