Site Tools


3dp

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
3dp [2026-05-08 Fri 03:19] theorytoe3dp [2026-06-24 Wed 03:31] (current) theorytoe
Line 3: Line 3:
 knowledge -> vomit -> wiki knowledge -> vomit -> wiki
  
 +  * [[3dp:marlin|New Printer Marlin Setup]]
 +
 +===== Useful Links =====
 +
 +    * [[https://ellis3dp.com/Print-Tuning-Guide/|Ellis' Printer Tuning Guide]]
 +    * [[https://docs.vorondesign.com/|Voron Documentation]]
 +    * [[https://little-did-i-know.github.io/Gcode/gcode-modifier.html|gcode viewer]]
 +    * [[https://blog.rahix.de/design-for-3d-printing/|Design for 3D Printing]]
  
 ===== Esteps Calib ===== ===== Esteps Calib =====
Line 17: Line 25:
   * Calculate new esteps using previous measurement $x$: $E_{new} = E_{orig} \cdot \frac{100}{120-x}$   * Calculate new esteps using previous measurement $x$: $E_{new} = E_{orig} \cdot \frac{100}{120-x}$
   * Set new value with ''M92'' (ie. ''M92 E421'').   * Set new value with ''M92'' (ie. ''M92 E421'').
 +
 +===== X/Y Offset (Marlin) =====
 +
 +<code>
 +G28                        ; home
 +G0 X[x offset] Y[y offset] ; move to proper bed origin
 +M428                       ; set current pos as bed origin
 +M500                       ; write to EEPROM
 +</code>
 +
 +===== Marlin UBL =====
 +
 +Kinda nice compared to Bilinear, but its poorly explained...
 +Firstly, manually level. Next:
 +
 +<code>
 +G28        ; home
 +G29 P1     ; auto probe
 +G29 P3     ; interp. pts
 +G29 F10.0  ; set fade height to 10mm
 +G29 S0     ; save mesh in slot 0
 +M500       ; save to EEPROM
 +</code>
 +
 +Then for start gcode excerpt
 +
 +<code>
 +G28          ; home all axes
 +G29 L0       ; load mesh slot 0 (enables UBL so G29 A is redundant)
 +G29 J2       ; 4-pt co-planar mesh align level
 +</code>
 +
3dp.1778210342.txt.gz · Last modified: by theorytoe