Cambiato nome macchina da Homag a Masterwood

This commit is contained in:
andrea.villa
2025-04-11 10:07:32 +02:00
parent cf8d2bf6da
commit 0066d7496d
11 changed files with 12 additions and 16 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

@@ -38,9 +38,6 @@ InitScript=InitDisp.lua
[Fixtures]
HookTolerance = 100
Vac1=Vac125x75H100,12
Vac2=Vac115x160H100,12
Ref1=RefD22,12
[Heads]
; 5 axis head
@@ -1,4 +1,4 @@
-- Descrizione macchina Homag TF600KST 2025/04/10
-- Descrizione macchina Masterwood TF600KST 2025/04/10
-- by EgalWare s.r.l.
require( 'EmtGenerator')
@@ -83,12 +83,12 @@ MDRILLBOTT = { { Pos = H22Pos + Vector3d( 0, 0, 0), Ex=1, St=90}, --
----------------------------------------------------------------------
EmtGeneral {
File='Homag-TF600KST.nge',
File='Masterwood-TF600KST.nge',
Offset = Vector3d( -1317.5,28.47,-826.5),
AxisMaxAdjust = 10,
ExitMaxAdjust = 20,
Special = 'Homag-TF600KST.mlse',
Processor = 'Homag-TF600KST.mlpe'}
Special = 'Masterwood-TF600KST.mlse',
Processor = 'Masterwood-TF600KST.mlpe'}
EmtBase {
Name = 'Base',
Geo= 'BASE/GEO',
@@ -359,7 +359,6 @@ end
-- Funzione per resettare tutte le attivazioni della macchina
function OnResetMachine()
EmtUnlinkAllRawPartsFromGroups()
EmtUnlinkAllFixturesFromGroups()
-- nascondo Vmill
local nRawId = EgtGetFirstRawPart()
while nRawId do
@@ -1,4 +1,4 @@
-- Processore macchina Homag-TF600KST 2025/03/30
-- Processore macchina Masterwood-TF600KST 2025/03/30
-- by EgalWare s.r.l.
--
-- Intestazioni
@@ -10,7 +10,7 @@ EgtEnableDebug( false)
---------------------------------------------------------------------
local sBaseDir = EgtGetCurrMachineDir()
if NumericalControl == 'woodWOP' then
dofile( sBaseDir .. '\\Homag-woodWOP.mlpe')
dofile( sBaseDir .. '\\Masterwood-woodWOP.mlpe')
else
EmtSetLastError( 1201, 'Numerical Control error : unkwnown type')
end
@@ -1,4 +1,4 @@
-- Processore generico Homag woodWOP 2025/04/01
-- Processore generico Masterwood woodWOP 2025/04/01
-- by EgalWare s.r.l.
--
-- Intestazioni
+5 -5
View File
@@ -1,5 +1,5 @@
-- 2025/03/30 10:00:00
-- Disposition Init for Homag-TF600KST machine
-- Disposition Init for Masterwood-TF600KST machine
-- Intestazioni
require( 'EgtBase')
@@ -13,7 +13,7 @@ local ColA = Color3d( 255, 165, 0, 30)
--------------------------------------------------------------------------------
-- * Verifica esistenza MachGroup *
if not EgtGetCurrMachGroup() then
local sErr = 'InitDisp for Homag-TF600KST : missing CurrMachGroup'
local sErr = 'InitDisp for Masterwood-TF600KST : missing CurrMachGroup'
EgtOutLog( sErr)
EgtOutText( sErr)
DISP.ERR = 1
@@ -43,7 +43,7 @@ local b3Part = EgtGetBBoxGlob( Pz or GDB_ID.NULL, GDB_BB.STANDARD)
local b3Solid = EgtGetBBoxGlob( Ls or GDB_ID.NULL, GDB_BB.STANDARD)
-- Se pezzo vuoto, non devo fare alcunchè
if b3Part:isEmpty() then
local sErr = 'InitDisp for Homag-TF600KST : empty part'
local sErr = 'InitDisp for Masterwood-TF600KST : empty part'
EgtOutLog( sErr)
EgtOutText( sErr)
DISP.ERR = 2
@@ -100,7 +100,7 @@ else
end
end
if not nRaw then
local sErr = 'InitDisp for Homag-TF600KST : error defining raw part'
local sErr = 'InitDisp for Masterwood-TF600KST : error defining raw part'
EgtOutLog( sErr)
EgtOutText( sErr)
DISP.ERR = 3
@@ -142,7 +142,7 @@ if not bVac then
end
end
if not EgtMoveToCornerRawPart( nRaw, vtOffs, nCorn) then
local sErr = 'InitDisp for Homag-TF600KST : error positioning raw part on table'
local sErr = 'InitDisp for Masterwood-TF600KST : error positioning raw part on table'
EgtOutLog( sErr)
EgtOutText( sErr)
DISP.ERR = 4