Responsedata class
Module: zaber_motion.ascii
Response message from the device.
To use this type, add from zaber_motion.ascii import Response to the top of your source code.
Properties
presponse.device_address
int Number of the device that sent the message.
presponse.axis_number
int Number of the axis which the response applies to. Zero denotes device scope.
presponse.reply_flag
str The reply flag indicates if the request was accepted (OK) or rejected (RJ). Does not apply to info messages.
presponse.status
str The device status contains BUSY when the axis is moving and IDLE otherwise. Does not apply to info messages.
presponse.warning_flag
str The warning flag contains the highest priority warning currently active for the device or axis. Does not apply to info messages.
presponse.data
str Response data which varies depending on the request.
presponse.message_type
MessageType Type of the response received (only Reply or Info).