2 Commits

Author SHA1 Message Date
andrea.villa 3351d3bcdd In simulazione, foratore si muove prima in X-Y e poi Z 2025-08-22 11:46:45 +02:00
luca.mazzoleni d7adf4a829 - in ini si usa flag active invece di setup utensili 2025-06-18 16:40:50 +02:00
3 changed files with 7 additions and 2 deletions
+1
View File
@@ -15,6 +15,7 @@ DrillMaker=MakeWoodDrill.lua
SawbladeMaker=MakeSawblade.lua
MillMaker=MakeWoodCylMill.lua
ChiselMaker=MakeChisel.lua
Active=1
[ToolHolder]
H11.1=HSK-F63_MillWeld12.nge
+2 -2
View File
@@ -4,8 +4,8 @@
require( 'EmtGenerator')
EgtEnableDebug( false)
PP_VER = '2.7f3'
PP_NVER = '2.7.6.3'
PP_VER = '2.7h1'
PP_NVER = '2.7.8.1'
MIN_MACH_VER = '2.5k1'
MACH_NAME = 'MW_Project265'
+4
View File
@@ -382,6 +382,10 @@ end
---------------------------------------------------------------------
function OnSimulMoveStart()
-- se foratore, muovo sempre prima la X-Y e poi gli altri assi
if ( EMT.MOVE == 0 and EMT.FLAG == 1) and EMT.HEAD == 'H21' then
SimulMoveAxis( 'X', EMT.L1, MCH_SIM_STEP.RAPID, 'Y', EMT.L2, MCH_SIM_STEP.RAPID)
end
end
---------------------------------------------------------------------