16 lines
284 B
Python
16 lines
284 B
Python
import GCode_Interpreterdc
|
|
|
|
class Controller:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def __call__(self, gtm, *args, **kwargs):
|
|
assert isinstance(gtm)
|
|
return None
|
|
|
|
|
|
# class PIDController(Controller):
|
|
# def __call__(self, gtm, *args, **kwargs):
|
|
# self.
|
|
|
|
|