Hello everyone!

In the upcoming software release of myCNC, software PLC commands have been expanded, with some new capabilities added.

1. Ability to move your axes directly from software PLC by using the 100020-100027 variables.

Example to move 100 mm in the X-axis:

gvarset(100020, 100);

2. Ability to launch Hardware PLCs from your Software PLC commands. This is done via the 100041 and 100040 commands.

Example to launch Hardware PLC M607 with the eparam 333:

gvarset(100041, 333);

gvarset(100040, 607);

Read more about our Software PLC here.