I'm using the current version of TNGV2 (08/27/2024) I'm changing tools but the current tool doesn't appear as usual. Here's an example
obviously she did something in the settings and I'm wondering which "code" needs to be used.
Thank you Markus
I'm using the current version of TNGV2 (08/27/2024) I'm changing tools but the current tool doesn't appear as usual. Here's an example
obviously she did something in the settings and I'm wondering which "code" needs to be used.
Thank you Markus
T(toolnumber)M6
exampel: T50M6 or M6T50
thanks and where do I save this and where should the file go then?
The problem is that he forgets that he has loaded a tool.
There seems to be an issue in the M06 script.
It seems that the line break is not working as intended.
Changing Line 83 from
(msg,Change tool:\ #<_current_tool,0>: #<_current_toolname>\to\ #<_selected_tool,0>: #<_selected_toolname>)
to
(msg,Change tool: #<_current_tool,0>: #<_current_toolname> to #<_selected_tool,0>: #<_selected_toolname>)
fixes the issue for me.
Seems the \ is somehow preventing the correct interpretation of the following variable in the first instance. From my understanding it should only add a line break but it seems that its working as an escape character in this case.
@PlanetCNC please have a look, looks like a bug somewhere in the code, or at last like a unexpected behavior.
can be easily reproduced in the MDI as well.
Swtiching to Tool 1 with T1M06
Preload tool 2 with
T2
(print,Change tool:\ #<_current_tool,0>: #<_current_toolname>\to\ #<_selected_tool,0>: #<_selected_toolname>)
in mdi gives the following output:
Change tool:\ #<_current_tool,0>: #<_current_toolname>\to\ 2: tool 2
Best Regards,
Klaus