Reputation over time
It looks like this user hasn't gained any reputation yet.
Once they have, you'll be able to view a graph of their reputation gained over time.
Here's a preview of what the graph will look like:
Reputation Breakdown
No reputation gained yet.
1034
Hi,
I use a touchscreen device to control my workbee and accidental clicks have exposed some issues with Workbee Control which you may have overlooked.
It is possible to click the button to turn off the spindle/tool when a job is active, potentially crashing and breaking an endmill.
Movement, homing and set axis zero buttons on the dashboard should be disabled/greyed out when a job is running. I accidentally set a new X Zero in the middle of a job and ruined the part.
I hope you can fix these in the next update to WorkBee Control.
The reset motors calibration confirmation popup rather asks you to reset the probe. Confirming does reset the calibration though.
Also add
G4 S10
After M3 line so spindle can get up to speed before
You can store spindle speed before pausing and inject it into your resume file
Create a global variable in config-user-settings.g
global spindlespeed = 16000
In pause.g add this line before M5
set global.spindlepeed = spindles.current
In resume.g, the M3 line will read
M3 S{global.spindlespeed}