bed_mesh: Include add bed mesh

This commit is contained in:
Jordan Ruthe
2021-01-21 21:49:57 -05:00
parent 3ea8402303
commit 874dd509bf
6 changed files with 403 additions and 14 deletions

View File

@@ -63,8 +63,12 @@ class KlippyGcodes:
@staticmethod
def bed_mesh_load(profile):
return "BED_MESH_PROFILE LOAD=%s" % profile
return "BED_MESH_PROFILE LOAD='%s'" % profile
@staticmethod
def bed_mesh_remove(profile):
return "BED_MESH_PROFILE REMOVE='%s'" % profile
@staticmethod
def bed_mesh_save(profile):
return "BED_MESH_PROFILE SAVE=%s" % profile
return "BED_MESH_PROFILE SAVE='%s'" % profile