(01-20-2021, 05:30 PM)Jeremy Wrote:Hi Otto,
Here's a new post-processor that should remove the decimal.
You can then divide by 100 000 once you retrieve the value in the controller.
Hope it helps.
Jeremy
Hi Jeremy,
the problem is partially solved.
At first, it didn't work, because I found in the Python File that the dot is missed (.)
Code:
# Remove special characters
for c in r'-[]/\;,><&*:%=+@!#^()|?^ ':
progname = progname.replace(c,'')
After Adding the dot the problem is solved.
But I got now the program in such form:
Code:
CALL JOB:EX61356
MOVL C00341 V=60.0 PL=1
CALL JOB:EX61576
MOVL C00342 V=60.0 PL=1
CALL JOB:EX61576
MOVL C00343 V=60.0 PL=1
CALL JOB:EX (61356)
I tried to give the brackets and space in the Program Events but no gain...
can you please guide me to solve this issue?
THANX!
Otto