kopia lustrzana https://github.com/vilemduha/blendercam
enable heindenhain 530 post
rodzic
bbeda55775
commit
5b674f2feb
|
|
@ -132,6 +132,7 @@ class machineSettings(bpy.types.PropertyGroup):
|
|||
('GRBL', 'grbl',
|
||||
'optimized gcode for grbl firmware on Arduino with cnc shield'),
|
||||
('HEIDENHAIN', 'Heidenhain', 'heidenhain'),
|
||||
('HEIDENHAIN530', 'Heidenhain530', 'heidenhain530'),
|
||||
('TNC151', 'Heidenhain TNC151',
|
||||
'Post Processor for the Heidenhain TNC151 machine'),
|
||||
('SIEGKX1', 'Sieg KX1', 'Sieg KX1'),
|
||||
|
|
|
|||
|
|
@ -1143,6 +1143,9 @@ def exportGcodePath(filename, vertslist, operations):
|
|||
elif m.post_processor == 'HEIDENHAIN':
|
||||
extension = '.H'
|
||||
from .nc import heiden as postprocessor
|
||||
elif m.post_processor == 'HEIDENHAIN530':
|
||||
extension = '.H'
|
||||
from .nc import heiden530 as postprocessor
|
||||
elif m.post_processor == 'TNC151':
|
||||
from .nc import tnc151 as postprocessor
|
||||
elif m.post_processor == 'SIEGKX1':
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue