Hello Guest it is April 25, 2024, 03:38:55 PM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - DazTheGas

Pages: 1 2 3 4 5 6 »
1
Mach4 Videos / Constant Surface Speed using Lua
« on: December 28, 2018, 06:42:36 AM »
Well been doing a lot of mill turning on the mill lately so needed a way to do constant surface speed instead of manually raising the spindle speed using the spindle override, so I sat and during a coffee came up with this short and simple script for mach4.

All the instruction on use are in the video and the script is attached to save ya typing.

Enjoy
DazTheGas

Video with install instructions


2
Mach4 Videos / Using the ESS Probing Registers with Mach4
« on: December 27, 2018, 12:12:24 PM »
Hope this gives you some idea of how to use the new probing registers for the ESS

https://youtu.be/AthCnSaqV08

DazTheGas

3
Mach4 Videos / Repair a Mach4 Screenset
« on: November 27, 2018, 05:44:27 PM »
What to do if your screenset becomes unloadable.

https://youtu.be/T8-vhl1tWBg

DazTheGas

4
Mach4 Videos / Screen Timer Script
« on: September 20, 2018, 06:35:38 PM »
Ever wondered how the Screen Timer Script works

https://youtu.be/wNPMqjkcJ_8


Code used in video

Code: [Select]
if timer == 0 then
timer0()
elseif timer == 1 then
timer1()
elseif timer == 2 then
timer2()
elseif timer == 3 then
timer3()
elseif timer == 4 then
timer4()
elseif timer == 5 then
timer5()
elseif timer == 6 then
timer6()
elseif timer == 7 then
timer7()
elseif timer == 8 then
timer8()
elseif timer == 9 then
timer9()
else
mc.mcCntlSetLastError(inst, 'Timer Number Out Of Range')
end

function timer0()
local col = scr.GetProperty('btnMachCoord','Bg Color')
if col == '' then
scr.SetProperty('btnMachCoord','Bg Color','#00FF00')
else
scr.SetProperty('btnMachCoord','Bg Color','')
end
end

function timer1()
wx.wxMessageBox('I came from a Timer 1')
end

Enjoy

DazTheGas

5
Mach4 Videos / Dam Persistent Labels!!
« on: September 16, 2018, 11:31:45 AM »
When is a Lua Error not actually an error.............

https://youtu.be/mZ7IAkK55pk

DazTheGas

6
Mach4 Videos / ZeroBrane Tip - Custom AutoComplete
« on: July 14, 2018, 04:25:34 PM »
Well here's another tip on how to add your own modules and functions to the autocomplete in ZeroBrane Editor,

https://youtu.be/PaQ09OOIpeg

DazTheGas

7
Mach4 Videos / ZeroBrane Tip - Debug Environment
« on: July 14, 2018, 10:17:01 AM »
Heres a handy liitle way to include all functions and modules that your gui uses, in the ZeroBrane Editor

https://youtu.be/_0WhzbFvoAM

DazTheGas

8
Mach4 Videos / Mach4 and Coroutines
« on: December 17, 2017, 09:10:34 AM »
Simplified explanation of Mach4 and Coroutines

https://youtu.be/t2xQYvAXT8o


DazTheGas

9
Mach4 Videos / MW Simulator Install
« on: June 09, 2017, 05:07:53 PM »
Here a quick video on how I install the simulator and will get a video out on ots use shortly.

https://youtu.be/QPHtXEufFwM

DazTheGas

10
Mach4 Videos / Basic Modules Mach4
« on: May 28, 2017, 11:45:45 AM »
Basic Module creation and use in Mach4

https://youtu.be/TMzAT0eb3p0

DazTheGas

Pages: 1 2 3 4 5 6 »