Cheton Wu
Cheton Wu
Also see https://discuss.inventables.com/t/auto-tool-changer-works-great/22518 Note that you still have to prepare [tool change macros](https://github.com/cncjs/cncjs/wiki/Tool-Change) by yourself because there is no standarized way to know how users setup their auto tool changer...
@AuBeTeX CNCjs is simply a G-code sender program. All the status report was reported by Grbl using the status query command (`?`). It seems that your feed rate was accidentally...
I need to change the code in the [onClick](https://github.com/cncjs/cncjs/blob/v1.9.15/src/web/widgets/Probe/index.jsx#L403-L405) function from ```js canClick() { : : : if (workflow.state !== WORKFLOW_STATE_IDLE) { return false; } : : : ``` to...
BTW, I just compared the code between v1.9.14 and v1.9.15 and cannot found any differences: * v1.9.14 https://github.com/cncjs/cncjs/blob/v1.9.14/src/web/widgets/Probe/index.jsx#L403-L417 * v1.9.15 https://github.com/cncjs/cncjs/blob/v1.9.15/src/web/widgets/Probe/index.jsx#L403-L417 I don't think you can run Z-probe with v1.9.14...
Hi @neilferreri, Jogging buttons are disabled because Grbl is in the **Hold** state, you can enter the **Idle** state by pressing the Cycle Start button to enable jogging buttons. ####...
I think we can update the description like below: _Click the Resume button to resume program execution. To enable jogging controls, press the [Cycle Start] button to enter the Idle...
Hmmm. All jogging controls, MDI, and macro commands are executed through the [feeder](https://github.com/cncjs/cncjs/blob/v1.9.15/src/app/controllers/Grbl/GrblController.js#L175-L223), not the [sender](https://github.com/cncjs/cncjs/blob/v1.9.15/src/app/controllers/Grbl/GrblController.js#L253-L305), so these commands (M0/M1/M2/M30/M6) will be blocked by a modal window when executing from...
> Ask for position only after G0 better G0 Z..... command. For this purpose, you can implement a G-code processor to modify a gcode file by inserting `M114`s after `G0`s...
CNCjs is a software for general purpose use, that's why I propose adding more [configuration options](https://github.com/cncjs/cncjs/issues/475#issuecomment-490925868) for different needs. It's hard to determine the right timing for position update, appending...
@nickm324 Try terminating CNCjs processes and run again, if it doesn't work, you can follow the troubleshooting guide to see what is wrong with the electron app. https://github.com/cncjs/cncjs/wiki/Troubleshooting#troubleshoot-electron-app-on-windows Note that...