paison Posted May 11, 2017 Share Posted May 11, 2017 hello : I have a problem with a zero offset if the IXX26 is set to a value greater than 8388608, what good solution? Link to comment Share on other sites More sharing options...
Jay Lee Posted May 11, 2017 Share Posted May 11, 2017 one solution would be jogging the motor to a position you would like to be HOME position, and issue HMZ command at that position. this requires a PLC to handle the logic. Basically this PLC will do Home Offset manually with HMZ command. but you have to make sure the tuning of the motor is solid, so you can get in position within the tolerance. Link to comment Share on other sites More sharing options...
Jay Lee Posted May 15, 2017 Share Posted May 15, 2017 another solution for this is to do jog until trigger. and in jog until trigger move, the post trigger move is not limited by 2^24 number. let's assume that your home flag is in the negative direction, and home offset is 10,000,000 In a PLC, you can send a command #1j=-9000000000^10000000 so basically this will send motor 1 to negative direction, and after hitting a trigger, it will come back to position 10,000,000 of course in the PLC you need to monitor motor in-position bit and velocity-zero bit to make sure that the motor is at position. and then you can do HMZ. Link to comment Share on other sites More sharing options...
paison Posted May 16, 2017 Author Share Posted May 16, 2017 Thank you for your reply, the second solution should be more perfect Link to comment Share on other sites More sharing options...
Recommended Posts