Advertisement
black0r1337

bedmeshLOAD?

Jan 11th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. Mesh Bed Leveling
  2. The following commands are available when the "bed_mesh" config section is enabled:
  3.  
  4. BED_MESH_CALIBRATE [METHOD=manual]: This command probes the bed using generated points specified by the parameters in the config. After probing, a mesh is generated and z-movement is adjusted according to the mesh.
  5. NEXT: If manual bed probing is enabled, then one can use this command to move to the next probing point during a BED_MESH_CALIBRATE operation.
  6. BED_MESH_OUTPUT: This command outputs the current probed z values and current mesh values to the terminal.
  7. BED_MESH_MAP: This command probes the bed in a similar fashion to BED_MESH_CALIBRATE, however no mesh is generated. Instead, the probed z values are serialized to json and output to the terminal. This allows octoprint plugins to easily capture the data and generate maps approximating the bed's surface. Note that although no mesh is generated, any currently stored mesh will be cleared.
  8. BED_MESH_CLEAR: This command clears the mesh and removes all z adjustment. It is recommended to put this in your end-gcode.
  9. BED_MESH_PROFILE LOAD=<name> SAVE=<name> REMOVE=<name>: This command provides profile management for mesh state. LOAD will restore the mesh state from the profile matching the supplied name. SAVE will save the current mesh state to a profile matching the supplied name. Remove will delete the profile matching the supplied name from persistent memory. Note that after SAVE or REMOVE operations have been run the SAVE_CONFIG gcode must be run to make the changes to peristent memory permanent.
  10.  
  11. commands:
  12. BED_MESH_CALIBRATE
  13. BED_MESH_PROFILE SAVE=aneta8
  14. SAVE_CONFIG
  15.  
  16. dann loaden im startcode
  17.  
  18. [gcode_macro start_g]
  19. gcode =
  20. G28
  21. BED_MESH_PROFILE LOAD=aneta8
  22. G1 F8000
  23. G1 X234 Y-0.4 Z5 F3000
  24. G1 E15 F300
  25. G92 E0
  26. G0 Z0.5
  27. G1 X160 Y1 E10 F200
  28. G92 E0
  29. G1 X120 Y1 F3000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement