Search found 27 matches

by TD-4242
Tue Apr 16, 2024 12:52 pm
Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
Topic: Help with tool change macro
Replies: 5
Views: 187

Re: Help with tool change macro

You might also want to configure the machine to home using the monitoring switch as a home switch, so that machine zero on the Z axis is just below the carousel. I've been thinking about this as a good start too. In your tool-change macro you can set the Z+ software travel limit to a non-zero value...
by TD-4242
Tue Apr 16, 2024 12:25 pm
Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
Topic: Help with tool change macro
Replies: 5
Views: 187

Re: Help with tool change macro

The original MX-1 controller had a very noticeable stop of the Z when `ATC_Z_ClearedToolChanger_I` turns off just prior to it entering the tool changer. While I can update the M6 macro to solve the happy path of M6 working. I would still have the risk of a spindle running at speed and something run ...
by TD-4242
Mon Apr 15, 2024 11:33 pm
Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
Topic: Help with tool change macro
Replies: 5
Views: 187

Help with tool change macro

I've been slowly working through some issues and finally have my tool changes almost working. My tool change is 90% in the PLC code and initiated with: IF M6_SV THEN ChangeToTool_W = SV_TOOL_NUMBER, SET ATCStage the ATCStage then handles running the tool change and sends a `RST M6_SV` If you need mo...
by TD-4242
Mon Apr 15, 2024 1:48 pm
Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
Topic: Hicup DC servo motor kp ki kd
Replies: 12
Views: 2541

Re: Hicup DC servo motor kp ki kd

I have gotten them to an acceptable state but far from ideal. They like to make a lot of noise when trying to hold position. the movement is less than .0001 since normally it will hold there, but every once in a while I think it lands right now the cutover and it'll bounce between two tenths. This h...
by TD-4242
Sun Sep 18, 2022 9:16 pm
Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
Topic: Trying to learn PLC
Replies: 6
Views: 825

Re: Trying to learn PLC

Murphy's law strikes again. Found the macro portion of the documentation. Going to put that off then for now and get the Axis al moving.
by TD-4242
Sun Sep 18, 2022 8:11 pm
Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
Topic: Trying to learn PLC
Replies: 6
Views: 825

Re: Trying to learn PLC

So I've got everything working. Able to select the 12 tools using AUX1-12 like so: IF DoAux1Key_SV THEN ChangeToTool_W = 1, SET ATCStage, SET AUX1LED_O One for each Aux key. What I'm a little confused on is how I tie it to an M command. I haven't found great documentation on it yet so if its there p...
by TD-4242
Fri Sep 16, 2022 10:34 am
Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
Topic: Trying to learn PLC
Replies: 6
Views: 825

Re: Trying to learn PLC

On a side not I have gotten the logic in place now that identifies the tool locations as they go by. This old Acroloc has a very different style of tool changer along with it's own propritary tool holders. I'll be working on the pneumatic carousol lock this weekend and replacing a microswitch in it ...
by TD-4242
Fri Sep 16, 2022 10:30 am
Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
Topic: Trying to learn PLC
Replies: 6
Views: 825

Re: Trying to learn PLC

I don't think so. I'll remove the SET ShowInfoStage and check thos word values.
by TD-4242
Wed Sep 14, 2022 9:49 pm
Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
Topic: Trying to learn PLC
Replies: 6
Views: 825

Re: Trying to learn PLC

Every freaking time. Give up and post a question then figure it out right after.

Looking through the ctrl-alt-i I noticed that ShowInfoStage was never enabled. I added a SET ShowInfoStage and now the messages show up.
by TD-4242
Wed Sep 14, 2022 7:17 pm
Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
Topic: Trying to learn PLC
Replies: 6
Views: 825

Trying to learn PLC

Trying to learn some PLC code to control my tool changer and wanted to try to do an InfoMsg of what tool it thinks it selected but the message is never written to the console like I would expect. To attempt to log based on a button press that also turns on the tool carousel motor and is supposed to ...