├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── GCODE.md ├── LICENSE ├── README.md ├── dist └── release.sh ├── example.gcode ├── macro ├── machine │ ├── M3.9.g │ ├── M3000.g │ ├── M4.9.g │ ├── M4000.g │ ├── M4001.g │ ├── M4005.g │ ├── M5.9.g │ ├── M500.1.g │ ├── M5000.g │ ├── M501.1.g │ ├── M5010.g │ ├── M5011.g │ ├── M5012.g │ ├── M6515.g │ ├── M7.1.g │ ├── M7.g │ ├── M7000.g │ ├── M7001.g │ ├── M7500.g │ ├── M7600.g │ ├── M7601.g │ ├── M8.g │ ├── M80.9.g │ ├── M8001.g │ ├── M8002.g │ ├── M8003.g │ ├── M8004.g │ ├── M81.9.g │ ├── M9.g │ ├── M9999.g │ └── README.md ├── movement │ ├── G27.g │ ├── G37.1.g │ ├── G37.g │ ├── G6500.1.g │ ├── G6500.g │ ├── G6501.1.g │ ├── G6501.g │ ├── G6502.1.g │ ├── G6502.g │ ├── G6503.1.g │ ├── G6503.g │ ├── G6504.1.g │ ├── G6504.g │ ├── G6505.1.g │ ├── G6505.g │ ├── G6508.1.g │ ├── G6508.g │ ├── G6510.1.g │ ├── G6510.g │ ├── G6511.g │ ├── G6512.1.g │ ├── G6512.2.g │ ├── G6512.g │ ├── G6513.g │ ├── G6520.1.g │ ├── G6520.g │ ├── G6550.g │ ├── G6600.g │ ├── G73.g │ ├── G80.g │ ├── G8000.g │ ├── G81.g │ ├── G83.g │ └── README.md ├── private │ ├── README.md │ ├── display-startup-messages.g │ └── run-vssc.g ├── public │ ├── 1. Probing │ │ ├── Probe Cycles │ │ │ ├── Bore Probe.g │ │ │ ├── Boss Probe.g │ │ │ ├── Outside Corner Probe.g │ │ │ ├── Rectangle Block Probe.g │ │ │ ├── Single Surface Probe.g │ │ │ └── Vise Corner Probe.g │ │ └── Probe Workpiece.g │ ├── 2. Movement │ │ ├── Disable Rotation Compensation.g │ │ ├── Enable Rotation Compensation.g │ │ └── Park.g │ ├── 3. Config │ │ ├── Run Configuration Wizard.g │ │ └── Settings │ │ │ ├── Toggle Daemon Tasks.g │ │ │ ├── Toggle Debug Mode.g │ │ │ ├── Toggle Expert Mode.g │ │ │ ├── Toggle Spindle Feedback.g │ │ │ ├── Toggle Toolsetter.g │ │ │ ├── Toggle Touch Probe.g │ │ │ ├── Toggle Tutorial Mode.g │ │ │ └── Toggle VSSC.g │ ├── 4. Misc │ │ ├── Print All Variables.g │ │ ├── Reload.g │ │ ├── Restore Point │ │ │ ├── Discard Restore Point.g │ │ │ ├── Load Restore Point.g │ │ │ └── Save Restore Point.g │ │ └── Safety Net │ │ │ ├── Disable Machine Power.g │ │ │ └── Enable Machine Power.g │ └── README.md └── tool-change │ ├── tfree.g │ ├── tpost.g │ └── tpre.g ├── post-processors ├── freecad │ └── millennium_os_post.py └── fusion-360 │ ├── README.md │ ├── millennium-os.cps │ └── milo-v1.5-std.mch ├── sys ├── cancel.g ├── daemon.g ├── mos-boot.g ├── mos-override-vars.g.example ├── mos-vars.g ├── mos.g ├── pause.g ├── resume.g ├── stop.g └── workzero.g └── ui ├── .gitignore ├── README.md ├── dist └── release.sh ├── index.js ├── package-lock.json ├── plugin.json └── src ├── MillenniumOS.vue ├── components ├── BaseComponent.vue ├── inputs │ ├── AxisInput.vue │ └── index.ts ├── overrides │ ├── index.ts │ ├── panels │ │ ├── CNCContainerPanel.vue │ │ ├── CNCDashboardPanel.vue │ │ ├── CNCMovementPanel.vue │ │ └── index.ts │ └── routes │ │ ├── Job │ │ └── Status.vue │ │ └── index.ts └── panels │ ├── CNCAxesPosition.vue │ ├── JobCodePanel.vue │ ├── JobProgressPanel.vue │ ├── ProbeMethodRender.vue │ ├── ProbeResultsPanel.vue │ ├── ProbeSelectorPanel.vue │ ├── ProbeSettingsPanel.vue │ ├── ProbingPanel.vue │ ├── SafeMovementPanel.vue │ ├── SpindleControlPanel.vue │ ├── StatusPanel.vue │ ├── WorkplaceOriginsPanel.vue │ └── index.ts ├── i18n └── en.json ├── index.ts ├── plugin.json ├── types ├── MachineCache.ts └── Probe.ts └── utils ├── display.ts └── index.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /GCODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/GCODE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/README.md -------------------------------------------------------------------------------- /dist/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/dist/release.sh -------------------------------------------------------------------------------- /example.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/example.gcode -------------------------------------------------------------------------------- /macro/machine/M3.9.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M3.9.g -------------------------------------------------------------------------------- /macro/machine/M3000.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M3000.g -------------------------------------------------------------------------------- /macro/machine/M4.9.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M4.9.g -------------------------------------------------------------------------------- /macro/machine/M4000.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M4000.g -------------------------------------------------------------------------------- /macro/machine/M4001.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M4001.g -------------------------------------------------------------------------------- /macro/machine/M4005.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M4005.g -------------------------------------------------------------------------------- /macro/machine/M5.9.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M5.9.g -------------------------------------------------------------------------------- /macro/machine/M500.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M500.1.g -------------------------------------------------------------------------------- /macro/machine/M5000.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M5000.g -------------------------------------------------------------------------------- /macro/machine/M501.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M501.1.g -------------------------------------------------------------------------------- /macro/machine/M5010.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M5010.g -------------------------------------------------------------------------------- /macro/machine/M5011.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M5011.g -------------------------------------------------------------------------------- /macro/machine/M5012.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M5012.g -------------------------------------------------------------------------------- /macro/machine/M6515.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M6515.g -------------------------------------------------------------------------------- /macro/machine/M7.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M7.1.g -------------------------------------------------------------------------------- /macro/machine/M7.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M7.g -------------------------------------------------------------------------------- /macro/machine/M7000.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M7000.g -------------------------------------------------------------------------------- /macro/machine/M7001.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M7001.g -------------------------------------------------------------------------------- /macro/machine/M7500.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M7500.g -------------------------------------------------------------------------------- /macro/machine/M7600.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M7600.g -------------------------------------------------------------------------------- /macro/machine/M7601.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M7601.g -------------------------------------------------------------------------------- /macro/machine/M8.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M8.g -------------------------------------------------------------------------------- /macro/machine/M80.9.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M80.9.g -------------------------------------------------------------------------------- /macro/machine/M8001.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M8001.g -------------------------------------------------------------------------------- /macro/machine/M8002.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M8002.g -------------------------------------------------------------------------------- /macro/machine/M8003.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M8003.g -------------------------------------------------------------------------------- /macro/machine/M8004.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M8004.g -------------------------------------------------------------------------------- /macro/machine/M81.9.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M81.9.g -------------------------------------------------------------------------------- /macro/machine/M9.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M9.g -------------------------------------------------------------------------------- /macro/machine/M9999.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/M9999.g -------------------------------------------------------------------------------- /macro/machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/machine/README.md -------------------------------------------------------------------------------- /macro/movement/G27.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G27.g -------------------------------------------------------------------------------- /macro/movement/G37.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G37.1.g -------------------------------------------------------------------------------- /macro/movement/G37.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G37.g -------------------------------------------------------------------------------- /macro/movement/G6500.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6500.1.g -------------------------------------------------------------------------------- /macro/movement/G6500.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6500.g -------------------------------------------------------------------------------- /macro/movement/G6501.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6501.1.g -------------------------------------------------------------------------------- /macro/movement/G6501.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6501.g -------------------------------------------------------------------------------- /macro/movement/G6502.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6502.1.g -------------------------------------------------------------------------------- /macro/movement/G6502.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6502.g -------------------------------------------------------------------------------- /macro/movement/G6503.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6503.1.g -------------------------------------------------------------------------------- /macro/movement/G6503.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6503.g -------------------------------------------------------------------------------- /macro/movement/G6504.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6504.1.g -------------------------------------------------------------------------------- /macro/movement/G6504.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6504.g -------------------------------------------------------------------------------- /macro/movement/G6505.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6505.1.g -------------------------------------------------------------------------------- /macro/movement/G6505.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6505.g -------------------------------------------------------------------------------- /macro/movement/G6508.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6508.1.g -------------------------------------------------------------------------------- /macro/movement/G6508.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6508.g -------------------------------------------------------------------------------- /macro/movement/G6510.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6510.1.g -------------------------------------------------------------------------------- /macro/movement/G6510.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6510.g -------------------------------------------------------------------------------- /macro/movement/G6511.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6511.g -------------------------------------------------------------------------------- /macro/movement/G6512.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6512.1.g -------------------------------------------------------------------------------- /macro/movement/G6512.2.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6512.2.g -------------------------------------------------------------------------------- /macro/movement/G6512.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6512.g -------------------------------------------------------------------------------- /macro/movement/G6513.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6513.g -------------------------------------------------------------------------------- /macro/movement/G6520.1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6520.1.g -------------------------------------------------------------------------------- /macro/movement/G6520.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6520.g -------------------------------------------------------------------------------- /macro/movement/G6550.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6550.g -------------------------------------------------------------------------------- /macro/movement/G6600.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G6600.g -------------------------------------------------------------------------------- /macro/movement/G73.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G73.g -------------------------------------------------------------------------------- /macro/movement/G80.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G80.g -------------------------------------------------------------------------------- /macro/movement/G8000.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G8000.g -------------------------------------------------------------------------------- /macro/movement/G81.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G81.g -------------------------------------------------------------------------------- /macro/movement/G83.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/G83.g -------------------------------------------------------------------------------- /macro/movement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/movement/README.md -------------------------------------------------------------------------------- /macro/private/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/private/README.md -------------------------------------------------------------------------------- /macro/private/display-startup-messages.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/private/display-startup-messages.g -------------------------------------------------------------------------------- /macro/private/run-vssc.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/private/run-vssc.g -------------------------------------------------------------------------------- /macro/public/1. Probing/Probe Cycles/Bore Probe.g: -------------------------------------------------------------------------------- 1 | ; Bore Probe.g 2 | G6500 -------------------------------------------------------------------------------- /macro/public/1. Probing/Probe Cycles/Boss Probe.g: -------------------------------------------------------------------------------- 1 | ; Boss Probe.g 2 | G6501 -------------------------------------------------------------------------------- /macro/public/1. Probing/Probe Cycles/Outside Corner Probe.g: -------------------------------------------------------------------------------- 1 | ; Outside Corner Probe.g 2 | G6508 -------------------------------------------------------------------------------- /macro/public/1. Probing/Probe Cycles/Rectangle Block Probe.g: -------------------------------------------------------------------------------- 1 | ; Rectangle Block Probe.g 2 | G6503 -------------------------------------------------------------------------------- /macro/public/1. Probing/Probe Cycles/Single Surface Probe.g: -------------------------------------------------------------------------------- 1 | ; Single Surface Probe.g 2 | G6510 -------------------------------------------------------------------------------- /macro/public/1. Probing/Probe Cycles/Vise Corner Probe.g: -------------------------------------------------------------------------------- 1 | ; Rectangle Block Probe.g 2 | G6520 -------------------------------------------------------------------------------- /macro/public/1. Probing/Probe Workpiece.g: -------------------------------------------------------------------------------- 1 | ; Probe Workpiece.g 2 | 3 | ; Prompt operator to select WCS 4 | G6600 W{null} -------------------------------------------------------------------------------- /macro/public/2. Movement/Disable Rotation Compensation.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/2. Movement/Disable Rotation Compensation.g -------------------------------------------------------------------------------- /macro/public/2. Movement/Enable Rotation Compensation.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/2. Movement/Enable Rotation Compensation.g -------------------------------------------------------------------------------- /macro/public/2. Movement/Park.g: -------------------------------------------------------------------------------- 1 | ; Park.g 2 | G27 -------------------------------------------------------------------------------- /macro/public/3. Config/Run Configuration Wizard.g: -------------------------------------------------------------------------------- 1 | ; Run Configuration Wizard.g 2 | G8000 -------------------------------------------------------------------------------- /macro/public/3. Config/Settings/Toggle Daemon Tasks.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/3. Config/Settings/Toggle Daemon Tasks.g -------------------------------------------------------------------------------- /macro/public/3. Config/Settings/Toggle Debug Mode.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/3. Config/Settings/Toggle Debug Mode.g -------------------------------------------------------------------------------- /macro/public/3. Config/Settings/Toggle Expert Mode.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/3. Config/Settings/Toggle Expert Mode.g -------------------------------------------------------------------------------- /macro/public/3. Config/Settings/Toggle Spindle Feedback.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/3. Config/Settings/Toggle Spindle Feedback.g -------------------------------------------------------------------------------- /macro/public/3. Config/Settings/Toggle Toolsetter.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/3. Config/Settings/Toggle Toolsetter.g -------------------------------------------------------------------------------- /macro/public/3. Config/Settings/Toggle Touch Probe.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/3. Config/Settings/Toggle Touch Probe.g -------------------------------------------------------------------------------- /macro/public/3. Config/Settings/Toggle Tutorial Mode.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/3. Config/Settings/Toggle Tutorial Mode.g -------------------------------------------------------------------------------- /macro/public/3. Config/Settings/Toggle VSSC.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/3. Config/Settings/Toggle VSSC.g -------------------------------------------------------------------------------- /macro/public/4. Misc/Print All Variables.g: -------------------------------------------------------------------------------- 1 | ; Print All Variables.g 2 | M7600 -------------------------------------------------------------------------------- /macro/public/4. Misc/Reload.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/4. Misc/Reload.g -------------------------------------------------------------------------------- /macro/public/4. Misc/Restore Point/Discard Restore Point.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/4. Misc/Restore Point/Discard Restore Point.g -------------------------------------------------------------------------------- /macro/public/4. Misc/Restore Point/Load Restore Point.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/4. Misc/Restore Point/Load Restore Point.g -------------------------------------------------------------------------------- /macro/public/4. Misc/Restore Point/Save Restore Point.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/4. Misc/Restore Point/Save Restore Point.g -------------------------------------------------------------------------------- /macro/public/4. Misc/Safety Net/Disable Machine Power.g: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macro/public/4. Misc/Safety Net/Enable Machine Power.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/4. Misc/Safety Net/Enable Machine Power.g -------------------------------------------------------------------------------- /macro/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/public/README.md -------------------------------------------------------------------------------- /macro/tool-change/tfree.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/tool-change/tfree.g -------------------------------------------------------------------------------- /macro/tool-change/tpost.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/tool-change/tpost.g -------------------------------------------------------------------------------- /macro/tool-change/tpre.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/macro/tool-change/tpre.g -------------------------------------------------------------------------------- /post-processors/freecad/millennium_os_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/post-processors/freecad/millennium_os_post.py -------------------------------------------------------------------------------- /post-processors/fusion-360/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/post-processors/fusion-360/README.md -------------------------------------------------------------------------------- /post-processors/fusion-360/millennium-os.cps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/post-processors/fusion-360/millennium-os.cps -------------------------------------------------------------------------------- /post-processors/fusion-360/milo-v1.5-std.mch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/post-processors/fusion-360/milo-v1.5-std.mch -------------------------------------------------------------------------------- /sys/cancel.g: -------------------------------------------------------------------------------- 1 | ; Call M9 for Coolant Control 2 | M9 3 | -------------------------------------------------------------------------------- /sys/daemon.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/sys/daemon.g -------------------------------------------------------------------------------- /sys/mos-boot.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/sys/mos-boot.g -------------------------------------------------------------------------------- /sys/mos-override-vars.g.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/sys/mos-override-vars.g.example -------------------------------------------------------------------------------- /sys/mos-vars.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/sys/mos-vars.g -------------------------------------------------------------------------------- /sys/mos.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/sys/mos.g -------------------------------------------------------------------------------- /sys/pause.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/sys/pause.g -------------------------------------------------------------------------------- /sys/resume.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/sys/resume.g -------------------------------------------------------------------------------- /sys/stop.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/sys/stop.g -------------------------------------------------------------------------------- /sys/workzero.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/sys/workzero.g -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/dist/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/dist/release.sh -------------------------------------------------------------------------------- /ui/index.js: -------------------------------------------------------------------------------- 1 | import "./src/index.ts"; -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/plugin.json -------------------------------------------------------------------------------- /ui/src/MillenniumOS.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/MillenniumOS.vue -------------------------------------------------------------------------------- /ui/src/components/BaseComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/BaseComponent.vue -------------------------------------------------------------------------------- /ui/src/components/inputs/AxisInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/inputs/AxisInput.vue -------------------------------------------------------------------------------- /ui/src/components/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/inputs/index.ts -------------------------------------------------------------------------------- /ui/src/components/overrides/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/overrides/index.ts -------------------------------------------------------------------------------- /ui/src/components/overrides/panels/CNCContainerPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/overrides/panels/CNCContainerPanel.vue -------------------------------------------------------------------------------- /ui/src/components/overrides/panels/CNCDashboardPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/overrides/panels/CNCDashboardPanel.vue -------------------------------------------------------------------------------- /ui/src/components/overrides/panels/CNCMovementPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/overrides/panels/CNCMovementPanel.vue -------------------------------------------------------------------------------- /ui/src/components/overrides/panels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/overrides/panels/index.ts -------------------------------------------------------------------------------- /ui/src/components/overrides/routes/Job/Status.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/overrides/routes/Job/Status.vue -------------------------------------------------------------------------------- /ui/src/components/overrides/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/overrides/routes/index.ts -------------------------------------------------------------------------------- /ui/src/components/panels/CNCAxesPosition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/CNCAxesPosition.vue -------------------------------------------------------------------------------- /ui/src/components/panels/JobCodePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/JobCodePanel.vue -------------------------------------------------------------------------------- /ui/src/components/panels/JobProgressPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/JobProgressPanel.vue -------------------------------------------------------------------------------- /ui/src/components/panels/ProbeMethodRender.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/ProbeMethodRender.vue -------------------------------------------------------------------------------- /ui/src/components/panels/ProbeResultsPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/ProbeResultsPanel.vue -------------------------------------------------------------------------------- /ui/src/components/panels/ProbeSelectorPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/ProbeSelectorPanel.vue -------------------------------------------------------------------------------- /ui/src/components/panels/ProbeSettingsPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/ProbeSettingsPanel.vue -------------------------------------------------------------------------------- /ui/src/components/panels/ProbingPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/ProbingPanel.vue -------------------------------------------------------------------------------- /ui/src/components/panels/SafeMovementPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/SafeMovementPanel.vue -------------------------------------------------------------------------------- /ui/src/components/panels/SpindleControlPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/SpindleControlPanel.vue -------------------------------------------------------------------------------- /ui/src/components/panels/StatusPanel.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/components/panels/WorkplaceOriginsPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/WorkplaceOriginsPanel.vue -------------------------------------------------------------------------------- /ui/src/components/panels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/components/panels/index.ts -------------------------------------------------------------------------------- /ui/src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/i18n/en.json -------------------------------------------------------------------------------- /ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/index.ts -------------------------------------------------------------------------------- /ui/src/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/plugin.json -------------------------------------------------------------------------------- /ui/src/types/MachineCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/types/MachineCache.ts -------------------------------------------------------------------------------- /ui/src/types/Probe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/types/Probe.ts -------------------------------------------------------------------------------- /ui/src/utils/display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MillenniumMachines/MillenniumOS/HEAD/ui/src/utils/display.ts -------------------------------------------------------------------------------- /ui/src/utils/index.ts: -------------------------------------------------------------------------------- 1 | import './display'; --------------------------------------------------------------------------------