When you are making 3Dprinter development it is very useful to know a few G-Code command to operate more or less manually your machine and make many tests. This doable using for instance the console of pronterface https://github.com/kliment/Printrun from a Raspberry Pi with a serial connection to your Stepper driver Main Board.
Here are my favorites Gcodes :
- M104 S220 (heat the nozzle to 220°C)
- G0 X0 Y0 Z0 F1000 (move at position X0 Y0 Z0 at feedrate 1000mm/min)
- M84 (release all the motors)
- G92 X0 Y0 Z0 A0 B0 C0 (define the value of the actual position of the machine)
- M906 B1500 (set the current in the motor of B axis)
- M92 X80 Y80 B-496 (set step/mm of chosen axes)
- M114 (get current position)
- M221 S150 (set feedrate at 150%)
- M290 Z-0.2 (make a permanent babystep correction in live)
To operate the Pronsole the most commands are simply :
- "connect" (establish the serial connection)
- "load" "filepathtogcode to run" (load your Gcode)
- "print" (start the print)
- "pause" (make a break)
- "resume" (restart)
- "exit" (close everything)
No comments yet