Page 1 of 1

Homing Issue AXBBE

PostPosted: Sun Jan 05, 2025 11:31 pm
by musgrave
Wondering if anyone has came across this issue or may know what the problem could be.

Have small lathe using 1.2117 with AXBBE after homing the machine I get the error message (Machine was not homed) when trying to use the Go To Park or the Probe features.
What could cause this error even though the machine has been just homed without issues off the home switches??

Re: Homing Issue AXBBE

PostPosted: Mon Jan 06, 2025 2:15 pm
by ger21
Are you homing X, Y and Z axis?

Re: Homing Issue AXBBE

PostPosted: Mon Jan 06, 2025 3:14 pm
by musgrave
Just the X and Z axis, no Y axis on the lathe

Re: Homing Issue AXBBE

PostPosted: Mon Jan 06, 2025 5:38 pm
by cncdrive
Change this code part of the macro (M200 for parking and M31 is the probing macro)

From:

Code: Select all
if(!exec.GetLED(56)||!exec.GetLED(57)||!exec.GetLED(58)) // If machine was not homed then it is unsafe to move in machine coordinates, stop here...
{
  MessageBox.Show("The machine was not yet homed, home the machine before probing!");
  exec.Stop();
  return;
}


To:

Code: Select all
if(!AS3.Getbuttonstate(107)||!AS3.Getbuttonstate(109)) // If machine was not homed then it is unsafe to move in machine coordinates, stop here...
{
  MessageBox.Show("The machine was not yet homed, home the machine before run to parking position!");
  exec.Stop();
  return;
}

Re: Homing Issue AXBBE

PostPosted: Mon Jan 06, 2025 10:02 pm
by musgrave
Thanks, that solved the issue!