GCode-Generator/controller.py
2025-01-13 16:53:46 +01:00

16 lines
318 B
Python

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):
return None