fribb

KlipperScreen.conf

Nov 24th, 2023
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. # Reference: https://klipperscreen.readthedocs.io/en/latest/Configuration/
  2.  
  3. #####################################################################
  4. # Include files
  5. #####################################################################
  6.  
  7. #[include conf.d/*.conf]
  8.  
  9. #####################################################################
  10. # Main Options
  11. #####################################################################
  12.  
  13. [main]
  14. # Invert axis in move panel. Default is False. Change to true to invert
  15. #invert_x: False
  16. #invert_y: False
  17. #invert_z: False
  18.  
  19. # Time (seconds) before the Job Status page reverts to main menu after a successful job
  20. #job_complete_timeout: 30
  21.  
  22. # Time (seconds) before the Job Status page reverts to main menu after a successful job.
  23. # If this option is 0, the user must click on a button to go back to the main menu.
  24. #job_error_timeout: 0
  25.  
  26. # Specify the language
  27. # The language can be specified here instead of using the system default language.
  28. language: en
  29.  
  30. # Allows the cursor to be displayed on the screen eg. you don't have a touch-screen
  31. show_cursor: False
  32.  
  33. # Allows to define custom systemctl command for restart like xrdp
  34. #service: xrdp
  35.  
  36. # If multiple printers are defined, this can be set the name of the one to show at startup.
  37. default_printer: Ender 5 Plus
  38.  
  39. #####################################################################
  40. # Printer Options
  41. #####################################################################
  42. # Define printer and name. Name is anything after the first printer word
  43. [printer Ender 5 Plus]
  44. # Define the moonraker host/port if different from 127.0.0.1 and 7125
  45. # ports 443 and 7130 will use https/wss
  46. moonraker_host: 192.168.178.4
  47. moonraker_port: 7125
  48.  
  49. # Moonraker API key if this is not connecting from a trusted client IP
  50. moonraker_api_key: False
  51.  
  52. # Define the z_babystep intervals in a CSV list. Currently only 2 are supported
  53. z_babystep_values: 0.01, 0.025
  54.  
  55. # Override the movement speed and set a specific for this printer.
  56. # These setting overrides the settings configured in the UI. If specified,
  57. # the values configured in the UI will not be used.
  58. move_speed_xy: 500
  59. move_speed_z: 300
  60.  
  61. # Define one or more moonraker power devices that turn on this printer (CSV list)
  62. # Default is the printer name
  63. #power_devices: example1, example2
  64.  
  65. # Define what items should be shown in titlebar besides the extruder and bed
  66. # the name must be the same as defined in the klipper config
  67. # valid options are temperature_sensors or temperature_fans, or heater_generic
  68. titlebar_items: chamber, MCU, Pi
  69.  
  70. # The style of the user defined items in the titlebar
  71. # Can be 'full' indicating that the full name is shown, 'short' for the first letter, or None (default) for no name
  72. titlebar_name_type: None
  73.  
  74. # Z probe calibrate position
  75. # By default is the middle of the bed
  76. calibrate_x_position: 100
  77. calibrate_y_position: 100
  78.  
  79. # Bed Screws
  80. # define the screw positons required for odd number of screws in a comma separated list
  81. # possible values are: bl, br, bm, fl, fr, fm, lm, rm, center
  82. # they correspond to back-left, back-right, back-middle, front-left, front-right, front-middle, left-middle, right-middle
  83. # example:
  84. screw_positions: bl, br, fm
  85.  
  86. # Rotation is useful if the screen is not directly in front of the machine.
  87. # Valid values are 0 90 180 270
  88. screw_rotation: 0
  89.  
  90. # Define distances and speeds for the extrude panel. CSV list 2 to 4 integers
  91. extrude_distances: 5, 10, 15, 25
  92. extrude_speeds: 1, 2, 5, 25
  93.  
  94. # Camera needs to be configured in moonraker:
  95. # https://moonraker.readthedocs.io/en/latest/configuration/#webcam
Advertisement
Add Comment
Please, Sign In to add comment