My customer wants to be able to jog off the limit switches when they hit them without acknowledging the error. They also want to auto-reset the “Enable input low” message that occurs when they Estop. Both of these situations error out MpAxisBasic, which prevents additional movements.
We were able to do this easily in ACP10 by watching “MpAxisBasic.Info.Diag.Internal.Code”, but in mappMotion that number is not nearly as specific. The only way to know what alarm is active is through MpAlarmX, and that would involve searching through the list with code and comparing strings because of the unhelpful “System” and “Operation” alarms that are also triggered.
I have a Reset All button on the HMI that also resets mpAxisBasic which clears everything and allows running, but I hesitate to use that from code because it might clear out important Alarms from other things.
I don’t want to disable any AlarmX alarms in the MpAxis configuration because that will hide problems from me and the operators, causing confusion when axes don’t work. Does anyone else have better methods for this?