aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/display/icons.py
Commit message (Collapse)AuthorAgeFilesLines
* display: Move glyph definition to printer configFlorian Heilmann2020-06-081-146/+0
| | | | | | | | This commit allows to modify the icons (or glyphs) in the displays that support it. Existing icons can be modified and new icons can be added via a [display_glyph] section in the config. Signed-off-by: Florian Heilmann <Florian.Heilmann@gmx.net>
* display: Replace hard-coded display with new config based displayKevin O'Connor2020-03-081-1/+1
| | | | | | | | | | Introduce a new config based system for specifying the on-screen contents of an lcd screen. The default screen configuration (found in klippy/extras/display/display.cfg) is the same as the previous hard-coded display, so this should not change behavior for existing users. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* display: FR icon changed to "Feed Rate" (#860)James2018-11-131-13/+13
| | | Signed-off-by: James Wood <j@j-w.co>
* display: Corrected Fan icon graphics (#753)alfsoft2018-10-071-1/+2
| | | | | | Added new Copyright string, corrected Fan icon graphics Signed-off-by: Alexander Fadeev <alfsoft@gmail.com>
* display: Change Extruder, Bed and Fan icons design (#740)alfsoft2018-10-041-59/+59
| | | | | Based on replies from Issue 652 (https://github.com/KevinOConnor/klipper/issues/652) only Extruder, Bed and Fan icons are changed. Feedrate icon stays untouched. Signed-off-by: Alexander Fadeev <alfsoft@gmail.com>
* display: Support writing single character glyphs using write_glyph()Kevin O'Connor2018-09-211-2/+2
| | | | | | | | Add write_glyph() support to hd44780.py. Update uc1701.py and st7920.py to support writing single character glyphs via write_glyph(). Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* display: Move icon drawing from display.py to lcd_chip codeKevin O'Connor2018-09-211-0/+7
| | | | | | | Move the st7920 icon rendering optimizations from display.py to st7920.py. This simplifies the code for other displays. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* icons: Add the bed to the bed heating animationsKevin O'Connor2018-09-211-6/+6
| | | | | | | | It isn't necessary to use the st7920's xor capabilities when drawing the bed heating animations. This makes it easier to use the icons for other displays. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* display: Move icons to their own moduleKevin O'Connor2018-06-271-0/+138
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>