mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-24 07:04:01 -06:00
gcode: "gcode_position" and toolhead "position" as get_status() named tuple
Add "gcode_position" named tuple to gcode.get_status(). Add a "position" named tuple to toolhead.get_status(). Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
4ccc218b06
commit
6e88320d62
3 changed files with 6 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
|||
# Code for state tracking during homing operations
|
||||
#
|
||||
# Copyright (C) 2016,2017 Kevin O'Connor <kevin@koconnor.net>
|
||||
# Copyright (C) 2016-2019 Kevin O'Connor <kevin@koconnor.net>
|
||||
#
|
||||
# This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
import logging, math
|
||||
import logging, math, collections
|
||||
|
||||
HOMING_STEP_DELAY = 0.00000025
|
||||
HOMING_START_DELAY = 0.001
|
||||
|
@ -152,3 +152,5 @@ class EndstopError(Exception):
|
|||
def EndstopMoveError(pos, msg="Move out of range"):
|
||||
return EndstopError("%s: %.3f %.3f %.3f [%.3f]" % (
|
||||
msg, pos[0], pos[1], pos[2], pos[3]))
|
||||
|
||||
Coord = collections.namedtuple('Coord', ('x', 'y', 'z', 'e'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue