aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/display_status.py
Commit message (Collapse)AuthorAgeFilesLines
* display_status: Implement SET_DISPLAY_TEXT commandEric Callahan2022-06-271-0/+6
| | | | Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* display_status: stops M73 from setting progress to 0 if P missingPedro Lamas2022-03-081-4/+6
| | | | Signed-off-by: Pedro Lamas <pedrolamas@gmail.com>
* gcode_macro: Add "rawparams" pseudo-variablePedro Lamas2021-11-191-13/+2
| | | | Signed-off-by: Pedro Lamas <pedrolamas@gmail.com>
* display_status: fix M117 checksum trimming (#3377)jhpadjustable2020-09-281-1/+3
| | | | | | | | | | The M117 command parser discards the last character of the message whenever the M117 command does not begin the line and there is no *xx checksum, e.g. N0 M117 Look at me causes the banner area of the printer screen to display "Look at m". This patch only trims the checksum when one is found to trim. Signed-Off-By: Jonathan Pickard <jhp@adjustablelabs.info>
* display_status: Use new GCodeCommand wrappersKevin O'Connor2020-05-051-5/+4
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* display_status: Separate out M73 and M117 handling to new moduleKevin O'Connor2020-03-081-0/+52
Move M73 and M117 handling from display.py to a new display_status.py module. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>