11 lines
215 B
Python
11 lines
215 B
Python
|
from GCode_Interpreterdc import GCodeToMotors
|
||
|
|
||
|
class Hardware:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
def probe(self, gtm: GCodeToMotors):
|
||
|
return
|
||
|
|
||
|
def realize(self, gtm: GCodeToMotors):
|
||
|
return
|