Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. danym21
    3. Best
    • Profile
    • Following 1
    • Followers 0
    • Topics 1
    • Posts 36
    • Best 5
    • Controversial 0
    • Groups 0

    Best posts made by danym21

    • RE: 3D GCode Viewer integrated with DWC

      @Sindarius
      is it possible to have this also in DWC 3.1.1 for the Duet 3?

      posted in Duet Web Control wishlist
      danym21undefined
      danym21
    • RE: Only probe where the part will be printed

      @Proschi78
      start G-Code:

      G90 ; use absolute coordinates
      ;M83  ; extruder relative mode
      ;BED_MESH_CALIBRATE AREA_START={first_layer_print_min[0]},{first_layer_print_min[1]} AREA_END={first_layer_print_max[0]},{first_layer_print_max[1]}
      ;MINX:{first_layer_print_min[0]}
      ;MINY:{first_layer_print_min[1]}
      ;MAXX:{first_layer_print_max[0]}
      ;MAXY:{first_layer_print_max[1]}
      M557 X{first_layer_print_min[0]}:{first_layer_print_max[0]} Y{first_layer_print_min[1]}:{first_layer_print_max[1]}
      M82 ; absolute extrusion mode
      M104 S140 T0
      M140 S[first_layer_bed_temperature] ; set bed temp
      M190 S[first_layer_bed_temperature] ; wait for bed temp
      G32 ; home all
      G1 X-14 Y-10 F10000
      ; Reset speed and extrusion rates
      M200 D0 ; disable volumetric e
      M220 S100 ; reset speed
      M221 S100 D0 ; reset extrusion rate
      M109 S{first_layer_temperature[initial_extruder]+extruder_temperature_offset[initial_extruder]} ; wait for extruder temp
      G92 E0.0
      
      ;G1 X150.0 E20  F1000.0 ; intro line
      G1 E20  F1000.0 ; intro line
      G1 X0.0 Y0.0 Z0.1 F1000.0 ; go outside print area
      ;G1 X5 Y0
      G92 E0.0
      G1 X2 Y2 Z0.2 E0 F18000 ; new
      G1 X60 Y2 E9.0 F1800 ;intro Line
      ;G1 X200.0 E30 F500 ; second Part intro Line
      G92 E0.0
      G1 Z5 E-{retract_length[0]} F{retract_speed *60}
      G1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} Z{first_layer_height} F30000
      G1 E{retract_length[0]} F{retract_speed*60}
      G92 E0.0
      
      

      I do not use a mesh.g this does not exists on my system
      my bed.g:

      ; bed.g
      ; called to perform automatic bed compensation via G32
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.8 on Sun Feb 09 2020 01:08:02 GMT+0100 (Mitteleuropäische Normalzeit)
      M561 ; clear any bed transform
      G4 P100
      G28 ; home
      G0 Z10 F4200
      
      G0 F60000
      G30 P0 X5 Y155 Z-99999						;Orbiter
      G30 P1 X302 Y155 Z-99999 S2					;Orbiter
      G30 P0 X5 Y155 Z-99999						;Orbiter
      G30 P1 X302 Y155 Z-99999 S2					;Orbiter
      G91 										;Relative positioning
      G1 Z5 F1500 								;Raise Z 5mm
      G90 										;Absolute positioning
      
      G0 X45 Y-5 F60000
      G29 										;Probe the heatbed and generate heightmap
      
      G91 										;Relative positioning
      G1 Z5 F1500 								;Raise Z 5mm
      G90 										;Absolute positioning
      
      G4 P100
      G0 X0 Y0 F60000 						;Go to Parking Position
      
      

      some settings in config.g that maybe relevant for:

      ...
      M671 X-52:377 Y155:155 S2.5 					   ; leadscrews at left (connected to Z) and right
      ...
      M557 X10:300 Y10:300 P6:6; S40                     ; define mesh grid ( the normal full size mesh config)
      
      posted in Gcode meta commands
      danym21undefined
      danym21
    • RE: 3D GCode Viewer integrated with DWC

      @Sindarius
      like I said in github it is working with the FixV2 on my SBC for me.
      many thx for the great work.

      posted in Duet Web Control wishlist
      danym21undefined
      danym21
    • RE: Only probe where the part will be printed

      @Proschi78
      🙂

      posted in Gcode meta commands
      danym21undefined
      danym21
    • RE: Only probe where the part will be printed

      @Proschi78
      no, sorry
      but on S3d maybe have a look to this variables:
      I do not know what is in, but you can test with a smal object and check then the gcode file

      [build_size_x]
      [build_size_y]
      [build_size_z]
      ....
      [next_position_x]
      [next_position_y]
      [next_position_z] 
      

      they are mentioned here:
      https://community.ultimaker.com/topic/11328-simplify3d-hidden-undocumented-placeholders-for-post-processing-scripts/

      posted in Gcode meta commands
      danym21undefined
      danym21