Show page Old revisions Backlinks This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. <html> <!-- Original Wikidot-time syntax, auto-replaced: «<html> <!-- Original Wikidot-time syntax, auto-replaced: «[[f>image http://www.careandcontrols.com/images/demo/gallery/Spare%20Parts/Weiss%20Spindle%20x-section.jpg style="width:320px"]]» --> <img src="/_media///external/http.www.careandcontrols.com.images.demo.gallery.spare.20parts.weiss.20spindle.20x.section.jpg" class="pull-right" style="width:320px"> </html>» --> <img src="/_media//external/http.www.careandcontrols.com.images.demo.gallery.spare.20parts.weiss.20spindle.20x.section.jpg" class="pull-right" style="width:320px"> </html> == M3 G-code M3 means "start the spindle at a specific speed". A spindle is a controlled motor that turns a tool ( endmill ) at a given speed to allow it to remove material from the workpiece. The M3 command must be accompanied by a <kbd>S</kbd> parameter which sets the speed of rotation. M3's evil twin is the [[M5]] command which turns the spindle off ( it is equivalent to <kbd>M3 S0</kbd> ). === Format The command is used as such : <code> M3 S1000 </code> Which means : start the spindle and make it turn at 1000 rotations per minute. === Parameters ^ Parameter ^ Usage ^ Example | | <kbd>S</kbd> | The spindle must turn at this speed in rotations per minute | M3 S1000 | === Configuration The spindle functionality of Smoothie is configured via the [[/spindle-module|Spindle]] module === Further reading These resources are used as references for Gcode : * [[http://linuxcnc.org/docs/html/gcode.html|LinuxCNC Gcode list]] * [[http://reprap.org/wiki/G-code|Reprap Gcode list]]