A postprocessor for myCNC controllers was added to DeskProto CAM software. It is available for download from 2019 Jan21 with new DeskProto V7.0 bugfix release.
We are working on a new style screen for Mill machines
The screenshots below are preview for 3 axes mill




Change Pump Implementation
Charge pump output can be easily implemented in myCNC control software through the Software PLC.
To do it
Goto the "Software PLC"

- Press "Add" to add new PLC procedure

Enter the procedure filename (CHARGE_PUMP), press "OK" button

Enter source code for change pump
main()
{
n=0;
port=0;
do{
n++;
if (n&1) { portset(port); } else {portclr(port);};
}while(1);
exit(99);
};

Press buttons "Save" and "Build"

Output pin defined "port" variable will start pulse generation.
....
port=0;
....
The result oscillogram is shown below

A few new shapes were added to the Library. We have now 75 flat shapes and a few shapes for tube cutting.

New screen design for Oxyfuel gas cutting is under developing.
Beside new look, we add new user-friendly settings widget for gas cutting

