**RESOLVED** CNC11 update

All things related to Centroid Oak, Allin1DC, MPU11 and Legacy products

Moderator: cnckeith

converterking
Posts: 129
Joined: Fri Mar 19, 2010 2:38 pm

**RESOLVED** CNC11 update

Post by converterking »

I have a MPU11-DC3IOB control running CNC11 rev34 software. When I try to upgrade to the latest software the pendant stops working. What am I doing wrong? thanks, Terry
diycncscott

Re: CNC11 update

Post by diycncscott »

Hi Terry,

Some of the pendant keys were re-mapped after you received you kit. This is fixed in a PLC program update which I'm testing this morning. -Look for a new topic this afternoon titled "Current MPU11 PLC Programs For CNC11". I will also have updated CNC11 software posted shortly
converterking
Posts: 129
Joined: Fri Mar 19, 2010 2:38 pm

Re: CNC11 update

Post by converterking »

Would I be better off getting a new pendant?
converterking
Posts: 129
Joined: Fri Mar 19, 2010 2:38 pm

Re: CNC11 update

Post by converterking »

Any updates?
cncsnw
Posts: 3765
Joined: Wed Mar 24, 2010 5:48 pm

Re: CNC11 update

Post by cncsnw »

You don't need a new pendant; that did not change at all. Instead, the internal numbers assigned to the pendant keys and LEDs in the PLC program (the JPI and JPO definitions) all changed. Instead of jumping all around based on function, the numbers are now assigned in order, row by column.

The following lines could be an approximate replacement for the JPI and JPO definitions in your current PLC program. Likely there will be some minor spelling and style differences that you will need to edit in.

Code: Select all

SpindlePlusKey        IS JPI1  ; Row  1 Column 1
SpindleAutoManualKey  IS JPI2  ; Row  1 Column 2
Aux1Key               IS JPI3  ; Row  1 Column 3
Aux2Key               IS JPI4  ; Row  1 Column 4
Aux3Key               IS JPI5  ; Row  1 Column 5

Spindle100PercentKey  IS JPI6  ; Row  2 Column 1
SpindleCWKey          IS JPI7  ; Row  2 Column 2
Aux4Key               IS JPI8  ; Row  2 Column 3
Aux5Key               IS JPI9  ; Row  2 Column 4
Aux6Key               IS JPI10 ; Row  2 Column 5

SpindleMinusKey       IS JPI11 ; Row  3 Column 1
SpindleCCWKey         IS JPI12 ; Row  3 Column 2
Aux7Key               IS JPI13 ; Row  3 Column 3
Aux8Key               IS JPI14 ; Row  3 Column 4
Aux9Key               IS JPI15 ; Row  3 Column 5

SpindleStopKey        IS JPI16 ; Row  4 Column 1
SpindleStartKey       IS JPI17 ; Row  4 Column 2
UnusedR4C3Key         IS JPI18 ; Row  4 Column 3
UnusedR4C4Key         IS JPI19 ; Row  4 Column 4
UnusedR4C5Key         IS JPI20 ; Row  4 Column 5

CoolantAutoManualKey  IS JPI21 ; Row  5 Column 1
CoolantFloodKey       IS JPI22 ; Row  5 Column 2
CoolantMistKey        IS JPI23 ; Row  5 Column 3
Aux11Key              IS JPI24 ; Row  5 Column 4
UnusedR5C5Key         IS JPI25 ; Row  5 Column 5

IncrContKey           IS JPI26  ; Row  6 Column 1
x1JogKey              IS JPI27  ; Row  6 Column 2
x10JogKey             IS JPI28  ; Row  6 Column 3
x100JogKey            IS JPI29  ; Row  6 Column 4
MPGKey                IS JPI30  ; Row  6 Column 5

Ax4PlusJogKey         IS JPI31  ; Row  7 Column 1
UnusedR7C2Key         IS JPI32  ; Row  7 Column 2
Ax2PlusJogKey         IS JPI33  ; Row  7 Column 3
UnusedR7C4Key         IS JPI34  ; Row  7 Column 4
Ax3PlusJogKey         IS JPI35  ; Row  7 Column 5

UnusedR8C1Key         IS JPI36  ; Row  8 Column 1
Ax1MinusJogKey        IS JPI37  ; Row  8 Column 2
FastSlowKey           IS JPI38  ; Row  8 Column 3
Ax1PlusJogKey         IS JPI39  ; Row  8 Column 4
UnusedR8C5Key         IS JPI40  ; Row  8 Column 5

Ax4MinusJogKey        IS JPI41  ; Row  9 Column 1
UnusedR9C2Key         IS JPI42  ; Row  9 Column 2
Ax2MinusJogKey        IS JPI43  ; Row  9 Column 3
UnusedR9C4Key         IS JPI44  ; Row  9 Column 4
Ax3MinusJogKey        IS JPI45  ; Row  9 Column 5

CycleCancelKey        IS JPI46  ; Row 10 Column 1
SingleBlockKey        IS JPI47  ; Row 10 Column 2
ToolCheckKey          IS JPI48  ; Row 10 Column 3
FeedHoldKey           IS JPI49  ; Row 10 Column 4
CycleStartKey         IS JPI50  ; Row 10 Column 5

SpindlePlusLED        IS JPO1  ; Row  1 Column 1
SpindleAutoManualLED  IS JPO2  ; Row  1 Column 2
Aux1LED               IS JPO3  ; Row  1 Column 3
Aux2LED               IS JPO4  ; Row  1 Column 4
Aux3LED               IS JPO5  ; Row  1 Column 5

Spindle100PercentLED  IS JPO6  ; Row  2 Column 1
SpindleCWLED          IS JPO7  ; Row  2 Column 2
Aux4LED               IS JPO8  ; Row  2 Column 3
Aux5LED               IS JPO9  ; Row  2 Column 4
Aux6LED               IS JPO10 ; Row  2 Column 5

SpindleMinusLED       IS JPO11 ; Row  3 Column 1
SpindleCCWLED         IS JPO12 ; Row  3 Column 2
Aux7LED               IS JPO13 ; Row  3 Column 3
Aux8LED               IS JPO14 ; Row  3 Column 4
Aux9LED               IS JPO15 ; Row  3 Column 5

SpindleStopLED        IS JPO16 ; Row  4 Column 1
SpindleStartLED       IS JPO17 ; Row  4 Column 2
UnusedR4C3LED         IS JPO18 ; Row  4 Column 3
UnusedR4C4LED         IS JPO19 ; Row  4 Column 4
UnusedR4C5LED         IS JPO20 ; Row  4 Column 5

CoolantAutoManualLED  IS JPO21 ; Row  5 Column 1
CoolantFloodLED       IS JPO22 ; Row  5 Column 2
CoolantMistLED        IS JPO23 ; Row  5 Column 3
Aux11LED              IS JPO24 ; Row  5 Column 4
UnusedR5C5LED         IS JPO25 ; Row  5 Column 5

IncrContLED           IS JPO26  ; Row  6 Column 1
x1JogLED              IS JPO27  ; Row  6 Column 2
x10JogLED             IS JPO28  ; Row  6 Column 3
x100JogLED            IS JPO29  ; Row  6 Column 4
MPGLED                IS JPO30  ; Row  6 Column 5

Ax4PlusJogLED         IS JPO31  ; Row  7 Column 1
UnusedR7C2LED         IS JPO32  ; Row  7 Column 2
Ax2PlusJogLED         IS JPO33  ; Row  7 Column 3
UnusedR7C4LED         IS JPO34  ; Row  7 Column 4
Ax3PlusJogLED         IS JPO35  ; Row  7 Column 5

UnusedR8C1LED         IS JPO36  ; Row  8 Column 1
Ax1MinusJogLED        IS JPO37  ; Row  8 Column 2
FastSlowLED           IS JPO38  ; Row  8 Column 3
Ax1PlusJogLED         IS JPO39  ; Row  8 Column 4
UnusedR8C5LED         IS JPO40  ; Row  8 Column 5

Ax4MinusJogLED        IS JPO41  ; Row  9 Column 1
UnusedR9C2LED         IS JPO42  ; Row  9 Column 2
Ax2MinusJogLED        IS JPO43  ; Row  9 Column 3
UnusedR9C4LED         IS JPO44  ; Row  9 Column 4
Ax3MinusJogLED        IS JPO45  ; Row  9 Column 5

CycleCancelLED        IS JPO46  ; Row 10 Column 1
SingleBlockLED        IS JPO47  ; Row 10 Column 2
ToolCheckLED          IS JPO50  ; Row 10 Column 3
FeedHoldLED           IS JPO48  ; Row 10 Column 4
CycleStartLED         IS JPO49  ; Row 10 Column 5
Hope this helps until Ajax gets around to posting some updated programs.

You may also find that you need to reduce the Kd gains in the PID Configuration screen, perhaps to around 25% of what they were before.
converterking
Posts: 129
Joined: Fri Mar 19, 2010 2:38 pm

Re: CNC11 update

Post by converterking »

Any update?
converterking
Posts: 129
Joined: Fri Mar 19, 2010 2:38 pm

Re: CNC11 update

Post by converterking »

I installed the new update from rev34 but didnt update the plc. Now the pendant doesnt work.
diycncscott

Re: CNC11 update

Post by diycncscott »

Terry,

Please install the latest software and copy the PLC program to your install directory which should clear up any problems you were having. Please do not run the PLCInstaller or you overwrite your existing config files again.

Use these links

PLC
http://ajaxcnc.com/ajaxbb/viewtopic.php?f=20&t=64

Software
http://ajaxcnc.com/ajaxbb/viewtopic.php?f=20&t=63


ajaxscott
converterking
Posts: 129
Joined: Fri Mar 19, 2010 2:38 pm

Re: CNC11 update

Post by converterking »

I installed the plc program per your instructions. The machine jogs in all directions except for y- and you cannot get it off slow jog. It homed and ran autotune without any problems. You cant use manual spindle spindle control either. I than ran the machine from version 3.0 r34 and everything worked. Terry
diycncscott

Re: CNC11 update

Post by diycncscott »

Terry,

Please send a report while running v3.01 r.003

Th newer PLC has some functionality that can force slow jog and disable jogging in a direction if certain conditions are met. We probably just need to clear those conditions - I'm sure you powered everything off after updating as instructed correct? (not just restarted the software)?

Also, press alt-i to bring up the I/O display and use the F11 & F12 keys to page down to view inouts 769-783

What color are each of the above inputs?
Post Reply