Jump to content

T9_AIR

Member
  • Posts

    3
  • Joined

  • Last visited

Personal Information

  • 3D printer
    Other 3D printer

T9_AIR's Achievements

0

Reputation

  1. Hi everyone! I am making a post-processing script to add a Klipper macro after every line in the file. Everything works until I try to save the sliced gcode when it gives me this error: 'str' object does not support item assignment. If anyone could explain to me what I messed up in the script, it would be a great help. This is my script: from ..Script import Script class AddLoggingGcode(Script): def _init_(self): super()._init_() def getSettingDataString(self): return """{ "name": "Add logging Gcode", "key": "AddLoggingGcode", "metadata": {}, "version": 2, "settings": {} }""" def execute(self, data): new_data = [] for layer in data: lines = layer.split("\n") for line in lines: new_data.append(line + "\nLog_FILE") return new_data
  2. Everything I have seen online says that the Z-seam is caused by the wait before the printer moves up a layer. https://all3dp.com/2/cura-z-seam-tutorial/
  3. Whenever I print a round object, such as a ball, the z-seam always ends up on the outside wall, and never on the inside. From what I have seen, the seam must end up on a vertex, so if you have a box, why can't the seam be on the inner corner?
×
×
  • Create New...