Jump to content

vlan_one

Dormant
  • Posts

    2
  • Joined

  • Last visited

Personal Information

  • 3D printer
    Other
  • Country
    ZA
  • Industry
    Other

vlan_one's Achievements

0

Reputation

  1. Hi, I found that the order of the start g-code seems to be the issue. It sets the bed temp and waits for it to reach the target temp before it sets the hotend temp. Was this an intended change? For something Like ABS is would actually make more sense as the bed takes a while to heat up to 110C. is there a setting to change this behavior?
  2. Good day. I am very new to 3d printing and still learning alot about slicing and printing. I enjoy using Cura and I can see the amount of development going into it. I noticed that upgrading to Cura 3.6.0 brought changes to the start code of my Ender 3 machine profile. I noticed that when I start a print with a file sliced in 3.6.0 the hotend temp was not being set, although the bed temp was set. I upgraded my Firmware to Original Marlin 1.1.9 (from Creality firmware) before upgraded Cura from 3.5.1 to 3.6.0. I also use Octoprint to print via USB. Naturally I am looking at the firmware, but in searching for the issue I tried to print an older file sliced with Cura 3.5.1 and the hotend temp was being set. I looked at the start g-code of the two files and found a difference as below. Manually changing the 3.6.0 file's start code to look like the 3.5.1 code worked. After I added the heating code back to the machine profile in Cura it added the code including the new 3.6.0 code. Could the firmware still be at fault? Where is the temp code, before the custom start code, set? Can I remove it and only keep the machine profile's start code? Old Code: working (even after firmware and Cura upgrade) ;Generated with Cura_SteamEngine 3.5.1 M82 ;absolute extrusion mode ; Ender 3 Custom Start G-code M104 S240 ; Set Extruder temperature M140 S110 ; Set Heat Bed temperature M190 S110 ; Wait for Heat Bed temperature M109 S240 ; Wait for Extruder temperature G28 ; Home all axes G92 E0 ; Reset Extruder New Code: Not working ;Generated with Cura_SteamEngine 3.6.0 M140 S110 M105 M190 S110 M104 S240 M105 M109 S240 M82 ;absolute extrusion mode ; Ender 3 Custom Start G-code G28 ; Home all axes G92 E0 ; Reset Extruder New Code with modified machine profile start code: ;Generated with Cura_SteamEngine 3.6.0 M140 S110 M105 M190 S110 M104 S240 M105 M109 S240 M82 ;absolute extrusion mode ; Ender 3 Custom Start G-code M104 S240 ; Set Extruder temperature M140 S110 ; Set Heat Bed temperature M190 S110 ; Wait for Heat Bed temperature M109 S240 ; Wait for Extruder temperature G28 ; Home all axes G92 E0 ; Reset Extruder
×
×
  • Create New...