diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-12-21 11:33:03 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-12-21 11:35:00 -0500 |
commit | 219796ef4e51828d29e654a02658cfbf450bfbcf (patch) | |
tree | c9a9b02d3bfd7d5e7cc4174aaa8e7211e661a5c6 /klippy/klippy.py | |
parent | 4f087c331c4a19f424ab7d8d0f4b845cbf75f345 (diff) | |
download | kutter-219796ef4e51828d29e654a02658cfbf450bfbcf.tar.gz kutter-219796ef4e51828d29e654a02658cfbf450bfbcf.tar.xz kutter-219796ef4e51828d29e654a02658cfbf450bfbcf.zip |
gcode: Add a "STATUS" command
Add a status command that will report the current printer status.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r-- | klippy/klippy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index 148c64c5..e7e9fed6 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -153,7 +153,7 @@ class Printer: self.build_config() self.validate_config() self.gcode.set_printer_ready(True) - self.state_message = "Running" + self.state_message = "Printer is ready" except ConfigParser.Error, e: logging.exception("Config error") self.state_message = "%s%s" % (str(e), message_restart) |