Page 1 of 1

Mp3000+DCC+scriber post question

Posted: Sun Aug 31, 2014 1:13 pm
by Davek0974
I've just started using this post to go with my MP3000 THC from CandCNC.

In the tool properties I now have extra features connected with DCC - tip volts, suggested tip size and THC delay.

I know the suggested tip size is for reference only but why does it seem fixed to 45A, if I type into the box it changes but as soon as I exit the box it snaps back to 45 A?

Posted: Sun Aug 31, 2014 7:09 pm
by WyoGreen
I'll assume your talking about the table you pull up under the Tool Table Editor. When you click on the box you want to change, double click it so that the value is highlighted. Then type in the new value and save the table. It works for me, so I hope it works for you too.

Edit: Ok, I lied. After reading your post again, I tried it again (I tried changing the Preset current before), and indeed it doesn't change.

Steve :oops:

Posted: Mon Sep 01, 2014 7:39 am
by Davek0974
Yes, it looks like it does but then snaps back to its default?????

Posted: Tue Sep 09, 2014 5:19 pm
by Davek0974
Anyone else noticed this?

Bug possibly?

Posted: Mon Jan 26, 2015 3:53 pm
by Davek0974
Bump :)

Posted: Mon Jan 26, 2015 5:21 pm
by Les Newell
That appears to be a bug in the post. That parameter is set up to allow a minimum of 45A with a default of 25A, which is a bit strange.
Edit the post and look for this line:

Code: Select all

post.DefineCustomToolParam("PlasmaTool", "Tip Size -Amps", "tipSize", sc.unit0DECPLACE, 25, 45, 200)
and change it to:

Code: Select all

post.DefineCustomToolParam("PlasmaTool", "Tip Size -Amps", "tipSize", sc.unit0DECPLACE, 45, 25, 200)

Posted: Mon Jan 26, 2015 7:46 pm
by Davek0974
Brilliant, thanks Les.