CreativeGcode3Dprinting
Creative Gcode 3D printing¶
LIA’s work¶
a video of LIA’s work
Previous workshop results¶
Vertical excess extrusion
Macrame printing style
Usefull g-code:¶
G28 //home
G21 //set to mm
G91 //relative position
G90//absolute position
M109 S220 //set head temperature to 200°C
M83 // relative position for extruder only
M245 //Fan on
M246 //Fan off
G4 1000//wait 1000 milliseconds
G1 F3000 X100 Y100 Z0.3 E20//position and extrusion
Prusa specific gcode :¶
M106 255 //fan speed 0 to 255 M107 //fan off
https://help.prusa3d.com/fr/article/g-codes-specifiques-a-prusa_112173
Pronterface software¶
https://github.com/kliment/Printrun/
Processing¶
gcode viewer¶
Always a good idea to visualise the gcode path you produce.
Processing code used during the workshop¶
Setup sequence with homing with a Prusa i3 : prusai3_header_modified.gcode , really important to do the homing , setup cartesian and mm for unit !
Those files are using a complexity progression numbering explained during the workshop.
Basic processing code to output a gcode text file one_empty.zip
How to make a square (4 points) two_square.zip
How to make multiple square pile up three_square_piled.zip
How to make multiple square in a pile rotated three_square_piled_rotation.zip
How to make a circle and play with overextrusion four_overextrusion_circle.zip
The circle formula to make over regular shapes four_overextrusion_not_so_circle.zip
Same circle formula with angle shifting four_rotation_trick.zip