mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-18 04:08:04 -06:00
cartesian: Rename CartKinematics class to ToolHead
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
b3e8b430e5
commit
20ae4e5d98
4 changed files with 40 additions and 40 deletions
|
@ -58,13 +58,13 @@ class Printer:
|
|||
if self.fileconfig.has_section('heater_bed'):
|
||||
self.objects['heater_bed'] = heater.PrinterHeater(
|
||||
self, ConfigWrapper(self, 'heater_bed'))
|
||||
self.objects['kinematics'] = cartesian.CartKinematics(
|
||||
self.objects['toolhead'] = cartesian.ToolHead(
|
||||
self, self._pconfig)
|
||||
|
||||
def stats(self, eventtime):
|
||||
out = []
|
||||
out.append(self.gcode.stats(eventtime))
|
||||
out.append(self.objects['kinematics'].stats(eventtime))
|
||||
out.append(self.objects['toolhead'].stats(eventtime))
|
||||
out.append(self.mcu.stats(eventtime))
|
||||
logging.info("Stats %.0f: %s" % (eventtime, ' '.join(out)))
|
||||
return eventtime + 1.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue