├── DIYM-TestV2 ├── GRBL Config ├── MI Inkscape Extension ├── dxf_input.inx ├── dxf_input.py ├── servo.inx └── servo.py ├── README.md └── grbl-mi ├── COPYING ├── Makefile ├── README.md ├── doc ├── log │ ├── commit_log_v0.7.txt │ ├── commit_log_v0.8c.txt │ ├── commit_log_v0.9g.txt │ ├── commit_log_v0.9i.txt │ └── commit_log_v0.9j.txt ├── media │ ├── COPYING │ ├── Grbl Logo 150px.png │ ├── Grbl Logo 250px.png │ ├── Grbl Logo 320px.png │ ├── Grbl Logo 640px.png │ ├── Grbl Logo.pdf │ └── Grbl Logo.svg └── script │ ├── simple_stream.py │ └── stream.py └── grbl-mi ├── config.h ├── coolant_control.c ├── coolant_control.h ├── cpu_map.h ├── cpu_map ├── cpu_map_atmega2560.h └── cpu_map_atmega328p.h ├── defaults.h ├── defaults ├── defaults_generic.h ├── defaults_oxcnc.h ├── defaults_shapeoko.h ├── defaults_shapeoko2.h ├── defaults_shapeoko3.h ├── defaults_sherline.h ├── defaults_simulator.h ├── defaults_x_carve_1000mm.h ├── defaults_x_carve_500mm.h └── defaults_zen_toolworks_7x7.h ├── eeprom.c ├── eeprom.h ├── examples └── grblUpload │ ├── grblUpload.ino │ └── license.txt ├── gcode.c ├── gcode.h ├── grbl.h ├── limits.c ├── limits.h ├── main.c ├── motion_control.c ├── motion_control.h ├── nuts_bolts.c ├── nuts_bolts.h ├── planner.c ├── planner.h ├── print.c ├── print.h ├── probe.c ├── probe.h ├── protocol.c ├── protocol.h ├── report.c ├── report.h ├── serial.c ├── serial.h ├── settings.c ├── settings.h ├── spindle_control.c ├── spindle_control.h ├── stepper.c ├── stepper.h ├── system.c └── system.h /DIYM-TestV2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/DIYM-TestV2 -------------------------------------------------------------------------------- /GRBL Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/GRBL Config -------------------------------------------------------------------------------- /MI Inkscape Extension/dxf_input.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/MI Inkscape Extension/dxf_input.inx -------------------------------------------------------------------------------- /MI Inkscape Extension/dxf_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/MI Inkscape Extension/dxf_input.py -------------------------------------------------------------------------------- /MI Inkscape Extension/servo.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/MI Inkscape Extension/servo.inx -------------------------------------------------------------------------------- /MI Inkscape Extension/servo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/MI Inkscape Extension/servo.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/README.md -------------------------------------------------------------------------------- /grbl-mi/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/COPYING -------------------------------------------------------------------------------- /grbl-mi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/Makefile -------------------------------------------------------------------------------- /grbl-mi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/README.md -------------------------------------------------------------------------------- /grbl-mi/doc/log/commit_log_v0.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/log/commit_log_v0.7.txt -------------------------------------------------------------------------------- /grbl-mi/doc/log/commit_log_v0.8c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/log/commit_log_v0.8c.txt -------------------------------------------------------------------------------- /grbl-mi/doc/log/commit_log_v0.9g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/log/commit_log_v0.9g.txt -------------------------------------------------------------------------------- /grbl-mi/doc/log/commit_log_v0.9i.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/log/commit_log_v0.9i.txt -------------------------------------------------------------------------------- /grbl-mi/doc/log/commit_log_v0.9j.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/log/commit_log_v0.9j.txt -------------------------------------------------------------------------------- /grbl-mi/doc/media/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/media/COPYING -------------------------------------------------------------------------------- /grbl-mi/doc/media/Grbl Logo 150px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/media/Grbl Logo 150px.png -------------------------------------------------------------------------------- /grbl-mi/doc/media/Grbl Logo 250px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/media/Grbl Logo 250px.png -------------------------------------------------------------------------------- /grbl-mi/doc/media/Grbl Logo 320px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/media/Grbl Logo 320px.png -------------------------------------------------------------------------------- /grbl-mi/doc/media/Grbl Logo 640px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/media/Grbl Logo 640px.png -------------------------------------------------------------------------------- /grbl-mi/doc/media/Grbl Logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/media/Grbl Logo.pdf -------------------------------------------------------------------------------- /grbl-mi/doc/media/Grbl Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/media/Grbl Logo.svg -------------------------------------------------------------------------------- /grbl-mi/doc/script/simple_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/script/simple_stream.py -------------------------------------------------------------------------------- /grbl-mi/doc/script/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/doc/script/stream.py -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/config.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/coolant_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/coolant_control.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/coolant_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/coolant_control.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/cpu_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/cpu_map.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/cpu_map/cpu_map_atmega2560.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/cpu_map/cpu_map_atmega2560.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/cpu_map/cpu_map_atmega328p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/cpu_map/cpu_map_atmega328p.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults/defaults_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults/defaults_generic.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults/defaults_oxcnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults/defaults_oxcnc.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults/defaults_shapeoko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults/defaults_shapeoko.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults/defaults_shapeoko2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults/defaults_shapeoko2.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults/defaults_shapeoko3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults/defaults_shapeoko3.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults/defaults_sherline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults/defaults_sherline.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults/defaults_simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults/defaults_simulator.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults/defaults_x_carve_1000mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults/defaults_x_carve_1000mm.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults/defaults_x_carve_500mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults/defaults_x_carve_500mm.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/defaults/defaults_zen_toolworks_7x7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/defaults/defaults_zen_toolworks_7x7.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/eeprom.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/eeprom.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/examples/grblUpload/grblUpload.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/examples/grblUpload/grblUpload.ino -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/examples/grblUpload/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/examples/grblUpload/license.txt -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/gcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/gcode.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/gcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/gcode.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/grbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/grbl.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/limits.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/limits.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/main.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/motion_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/motion_control.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/motion_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/motion_control.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/nuts_bolts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/nuts_bolts.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/nuts_bolts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/nuts_bolts.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/planner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/planner.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/planner.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/print.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/print.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/probe.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/probe.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/protocol.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/protocol.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/report.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/report.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/serial.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/serial.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/settings.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/settings.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/spindle_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/spindle_control.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/spindle_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/spindle_control.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/stepper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/stepper.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/stepper.h -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/system.c -------------------------------------------------------------------------------- /grbl-mi/grbl-mi/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIY-Machines/CNC-DrawingMachine/HEAD/grbl-mi/grbl-mi/system.h --------------------------------------------------------------------------------