17 lines
318 B
Python
17 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
|
||
|
|
||
|
|