Jump to content

obewan

Member
  • Posts

    166
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by obewan

  1. 5 hours ago, IBBRAZIL10 said:

    Thanks obewan and tinkergnome

     obewan your file wouldn't open. I did download Mesh tools and got the rectangular tube to be recognized. played around with different settings had it looking good tried to change infill density and it greyed out at 25 percent cant change it. wanted to lower it trying to get print below 24hrs. At 25 percent will be to heavy . What infill pattern would you recommend? Any thoughts??

     

    Brian

    did you try opening the file in cura ?

    Infill needs to be set at 0% otherwise it will destroy your internal structure.

    Print time is around 3 hours btw with single wall

  2. try setting surface mode normal  and slicing tolerance exclusive, also make sure print thin walls is ticked.

    But you do have some errors in the normals, In cura,top right, goto marketplace and download the mesh tools to show these errors.

    I have attached the project file i use tfor printing the 3dlabprint files.

    wing.png

    PI3_WR2.3mf

    • Like 1
  3. As a start, you can delete everything before the line 

    ;LAYER:597

    The G0 lines are just travel moves to avoid crossing the print.

    You need to set the extruder to the last E value before the layer change, so insert a lines

    G92 E174.18367   ;set extruder to last position

    G0 F600 X77.476 Y129.528 Z119.6 ;move to start of new layer

     

    just before G1 F2400 E180.18367

     

     

    so you end up with

    ;LAYER:597

    M204 S1800

    M205 X8 Y8

    ;TYPE:FILL

    ;MESH:Centoculops_Posed_3DPrint.stl

    G92 E174.18367   ;set extruder to last position

    G0 F600 X77.476 Y129.528 Z119.6 ;move to start of new layer

    G1 F2400 E180.18367

    G1 F3000 X118.565 Y73.979 E180.30606

    G1 X118.591 Y73.973 E180.30695

    G1 X118.962 Y73.93 E180.31937

    G1 X119.366 Y73.942 E180.33281

    G1 X119.682 Y73.997 E180.34348

    G1 X119.998 Y74.092 E180.35446

    G1 X120.246 Y74.196 E180.3634

    G1 X120.465 Y74.323 E180.37182

    G1 X120.476 Y74.331 E180.37227

    G1 X116.042 Y78.765 E180.58084

    G1 X116.157 Y78.971 E180.58868

    G1 X116.297 Y79.159 E180.59648

    G1 X116.488 Y79.353 E180.60553

    G1 X116.691 Y79.514 E180.61415

    G1 X116.993 Y79.7 E180.62595

    G1 X117.2 Y79.794 E180.63351

    G1 X117.258 Y79.811 E180.63552

    G1 X121.324 Y75.745 E180.82677

    M204 S3000

    M205 X10 Y10

    Now you need to somehow home the printer without knocking the print off the bed and get things heated up.

    manually move the nozzle above 119.60 then start printing.

    I think that should work🤞

  4. Try

     

     

    M140 S25 #cool the bed to 25 °C
    M190 S25 ;wait for bed to reach target temp
    G0 X160 Y125  #move "behind" the model
    G0 Z10 #move down
    G0 Y0 F2000 #push the model out
    
    #The rest is c/p from the begining of the print
    M140 S85 #heat the bed to 85 °C
    M106 S1 
    M204 S2812
    M205 X18 Y18
    ;MESH:Object 34
    G0 F6180 X158.075 Y28.465 Z0.42
    M204 S750
    M205 X7.5 Y7.5
    ;TYPE:WALL-INNER
    G1 F1500 E51.96984
  5. 58 minutes ago, Big_O said:

     

    I found this entry through a net search and it should answer my question and does, except that after adding them my printer begins warming and printing immediately, no wait for warm-up. Do these entries need to be in a specific place? I put them at the beginning! Here's my start Gcode entries:

     

    M140 S{material_bed_temperature} ; start heating the bed to what is set in Cura

    M104 S{material_print_temperature} T0 ; start heating T0 to what is set in Cura

    M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration

    M203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate

    M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration

    M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk

    M220 S100 ;Reset Feedrate

    M221 S100 ;Reset Flowrate

     

    G28 ;Home

     

    G92 E0 ;Reset Extruder

    G1 Z2.0 F3000 ;Move Z Axis up

    G1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position

    G1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line

    G1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little

    G1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line

    G92 E0 ;Reset Extruder

    G1 Z2.0 F3000 ;Move Z Axis up

     

     

     

    put these 2 lines just after the G28

    M190 S{material_bed_temperature} ; start heating the bed to what is set in Cura and WAIT
    M109 S{material_print_temperature} T0 ; start heating hotend to what is set in Cura and WAIT
    
    • Like 1
  6. Seems like the placeholder names have all changed again .

    http://files.fieldofview.com/cura/Replacement_Patterns.html

     

    try something like

     

    M104 S{default_material_print_temperature} ;heat nozzle to default temp set in material settings

     

    M140 S{default_material_bed_temperature} ;Start heating bed

     

    M190 S{material_bed_temperature_layer_0} ;Wait for bed to reach temp before proceeding

     

    M109 S{material_print_temperature_layer_0} ;Wait for extruder to reach temp before proceeding

     

×
×
  • Create New...