Error 907 Y Axis Exceeded

All things related to the Centroid Acorn CNC Controller

Moderator: cnckeith

Post Reply
donaldintexas
Posts: 8
Joined: Fri Jun 02, 2023 10:50 am
Acorn CNC Controller: No
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: none
DC3IOB: No
CNC12: No
CNC11: No
CPU10 or CPU7: No

Error 907 Y Axis Exceeded

Post by donaldintexas »

Having issues with Y axis exceeded. Attached is my report and an .nc file it errors out on for example. A simple drill op that the error comes at line 25 almost at the end of the program. I've reset coordinates at a couple places that would more than allow the small travel that is in the op. Any thoughts on what I've messed up?

Donald
Attachments
10.nc
(432 Bytes) Downloaded 6 times
report_54453801286D-0508237187_2024-06-21_10-54-28.zip
(868.49 KiB) Downloaded 5 times


cncsnw
Community Expert
Posts: 4537
Joined: Wed Mar 24, 2010 5:48 pm

Re: Error 907 Y Axis Exceeded

Post by cncsnw »

Line 25 of your program says:

Code: Select all

N110 G28 G91 X0. Y0.
Which means, you want the machine to move to the G28 position (return point #1).

The work coordinates, travel limits and return points section of your Report file says:

Code: Select all

CNC12 v. 5.04 coordinates file
Axis     Minus     Plus    Return     Return      Return     Return
         Limit     Limit   #1(G28)     #2(G30)      #3         #4
 X      0.0000  912.0000  810.00000  878.60000    0.00000    0.00000 
 Y   -500.0000    0.0000 -507.00000 -456.80000    0.00000    0.00000 
 Z   -150.0000    0.0000    0.00000    0.00000    0.00000    0.00000 
Which says that your available travel on the Y axis is -500mm from home; but your G28 return point is -507mm from home.

If you actually have 507mm or more travel available, then you need to correct your travel limit value.
If you do not, then you need to correct your G28 return point.


donaldintexas
Posts: 8
Joined: Fri Jun 02, 2023 10:50 am
Acorn CNC Controller: No
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: none
DC3IOB: No
CNC12: No
CNC11: No
CPU10 or CPU7: No

Re: Error 907 Y Axis Exceeded

Post by donaldintexas »

Thank you for the reply.


Post Reply