#!/usr/bin/python# -------------------------------------------# HBSTEP01B Stepper Motor control test code# -------------------------------------------## Program uses MLAB Python modules library from https://github.com/MLAB-project/pymlab#uncomment for debbug purposesimport logginglogging.basicConfig(level=logging.DEBUG)import sysimport timeimport spidev#### Script Arguments ###############################################if len(sys.argv) < 2:sys.stderr.write("Invalid number of arguments.\n")sys.stderr.write("Usage: %s PORT ADDRESS SPEED MOVE_DISTANCE\n" % (sys.argv[0], ))sys.exit(1)elif len(sys.argv) == 2:PORT = eval(sys.argv[1])SPEED = 50DISTANCE = 500elif len(sys.argv) == 3:SPEED = eval(sys.argv[2])DISTANCE = 1000elif len(sys.argv) == 4:SPEED = eval(sys.argv[2])DISTANCE = eval(sys.argv[3])else:PORT = 0SPEED = 20DISTANCE = 5000class axis:def __init__(self, SPI_handler, Direction, StepsPerUnit, MaxSpeed):' One axis of robot 'self.spi = SPI_handlerself.Dir = Directionself.SPU = StepsPerUnitself.maxspeed = MaxSpeedself.L6470_ABS_POS =0x01self.L6470_EL_POS =0x02self.L6470_MARK =0x03self.L6470_SPEED =0x04self.L6470_ACC =0x05self.L6470_DEC =0x06self.L6470_MAX_SPEED =0x07self.L6470_MIN_SPEED =0x08self.L6470_FS_SPD =0x15self.L6470_KVAL_HOLD =0x09self.L6470_KVAL_RUN =0x0Aself.L6470_KVAL_ACC =0x0Bself.L6470_KVAL_DEC =0x0Cself.L6470_INT_SPEED =0x0Dself.L6470_ST_SLP =0x0Eself.L6470_FN_SLP_ACC =0x0Fself.L6470_FN_SLP_DEC =0x10self.L6470_K_THERM =0x11self.L6470_ADC_OUT =0x12self.L6470_OCD_TH =0x13self.L6470_STALL_TH =0x14self.L6470_STEP_MODE =0x16self.L6470_ALARM_EN =0x17self.L6470_CONFIG =0x18self.L6470_STATUS =0x19# self.Reset()# self.Initialize()def Reset(self):'Reset the Axis'self.spi.xfer([0xC0]) # resetdef Initialize(self):'set default parameters for H-bridge '# self.spi.xfer( 0x14) # Stall Treshold setup# self.spi.xfer( 0xFF)# self.spi.xfer( 0x13) # Over Current Treshold setup# self.spi.xfer( 0xFF)# self.spi.xfer([0x15]) # Full Step speed# self.spi.xfer([0xFF])# self.spi.xfer([0xFF])# self.spi.xfer([0xFF])self.spi.xfer([0x05]) # ACCself.spi.xfer([0x00])self.spi.xfer([0x10])self.spi.xfer([0x06]) # DECself.spi.xfer([0x00])self.spi.xfer([0x10])self.spi.xfer([self.L6470_KVAL_RUN]) # KVAL_RUNself.spi.xfer([0x50])self.spi.xfer([self.L6470_KVAL_ACC]) # KVAL_ACCself.spi.xfer([0x50])self.spi.xfer([self.L6470_KVAL_DEC]) # KVAL_DECself.spi.xfer([0x50])# self.spi.xfer([0x18]) # CONFIG# self.spi.xfer([0b00111000])# self.spi.xfer([0b00000000])# self.MaxSpeed(self.maxspeed)def MaxSpeed(self, speed):'Setup of maximum speed in steps/s. The available range is from 15.25 to 15610 step/s with a resolution of 15.25 step/s.'speed_value = int(speed / 15.25)if (speed_value <= 0):speed_value = 1elif (speed_value >= 1023):speed_value = 1023data = [(speed_value >> i & 0xff) for i in (8,0)]self.spi.xfer([self.L6470_MAX_SPEED]) # Max Speed setupself.spi.xfer([data[0]])self.spi.xfer([data[1]])return (speed_value * 15.25)def ReleaseSW(self):' Go away from Limit Switch 'while self.ReadStatusBit(2) == 1: # is Limit Switch ON ?self.spi.xfer([0x92 | (~self.Dir & 1)]) # release SWwhile self.GetStatus()['BUSY']:passself.MoveWait(10) # move 10 units awaydef GoZero(self, speed):' Go to Zero position 'self.ReleaseSW()self.spi.xfer([0x82 | (self.Dir & 1)]) # Go to Zeroself.spi.xfer([0x00])self.spi.xfer([speed])while self.GetStatus()['BUSY']:passtime.sleep(0.3)self.ReleaseSW()def GetStatus(self):#self.spi.xfer([0b11010000]) # Get status command from datasheet - does not work for uknown rasonsself.spi.xfer([0x39]) # Gotparam command on status registerdata = self.spi.readbytes(1)data = data + self.spi.readbytes(1)status = dict([('SCK_MOD',data[0] & 0x80 == 0x80), #The SCK_MOD bit is an active high flag indicating that the device is working in Step-clock mode. In this case the step-clock signal should be provided through the STCK input pin. The DIR bit indicates the current motor direction('STEP_LOSS_B',data[0] & 0x40 == 0x40),('STEP_LOSS_A',data[0] & 0x20 == 0x20),('OCD',data[0] & 0x10 == 0x10),('TH_SD',data[0] & 0x08 == 0x08),('TH_WRN',data[0] & 0x04 == 0x04),('UVLO',data[0] & 0x02 == 0x02),('WRONG_CMD',data[0] & 0x01 == 0x01), #The NOTPERF_CMD and WRONG_CMD flags are active high and indicate, respectively, that the command received by SPI cannot be performed or does not exist at all.('NOTPERF_CMD',data[1] & 0x80 == 0x80),('MOT_STATUS',data[1] & 0x60),('DIR',data[1] & 0x10 == 0x10),('SW_EVN',data[1] & 0x08 == 0x08),('SW_F',data[1] & 0x04 == 0x04), #The SW_F flag reports the SW input status (low for open and high for closed).('BUSY',data[1] & 0x02 != 0x02),('HIZ',data[1] & 0x01 == 0x01)])return statusdef GetACC(self):# self.spi.xfer([0x29]) # Gotparam command on status registerself.spi.xfer([0x2D]) # Gotparam command on status registerdata = self.spi.readbytes(1)data = data + self.spi.readbytes(1)print datadef Move(self, units):' Move some distance units from current position 'steps = units * self.SPU # translate units to stepsif steps > 0: # look for directionself.spi.xfer([0x40 | (~self.Dir & 1)])else:self.spi.xfer([0x40 | (self.Dir & 1)])steps = int(abs(steps))self.spi.xfer([(steps >> 16) & 0xFF])self.spi.xfer([(steps >> 8) & 0xFF])self.spi.xfer([steps & 0xFF])def Run(self, direction, speed):speed_value = int(speed / 0.015)print hex(speed_value)data = [0b01010000 + direction]data = data +[(speed_value >> i & 0xff) for i in (16,8,0)]self.spi.xfer([data[0]]) # Max Speed setupself.spi.xfer([data[1]])self.spi.xfer([data[2]])self.spi.xfer([data[3]])return (speed_value * 0.015)def MoveWait(self, units):' Move some distance units from current position and wait for execution 'self.Move(units)while self.GetStatus()['BUSY']:passtime.sleep(0.1)def Float(self, hard = False):' switch H-bridge to High impedance state 'if (hard == False):self.spi.xfer([0xA0])else:self.spi.xfer([0xA8])# End Class axis --------------------------------------------------print "Stepper motor control test started. \r\n"print "Max motor speed: %f " % SPEEDprint "Distance to run: %f " % DISTANCEtry:print "SPI configuration.."spi = spidev.SpiDev() # create a spi objectspi.open(0, 0) # open spi port 0, device (CS) 0spi.mode = 0b01spi.lsbfirst = Falsespi.bits_per_word = 8spi.cshigh = Falsespi.max_speed_hz = 100000#spi.SPI_config(spi.I2CSPI_MSB_FIRST| spi.I2CSPI_MODE_CLK_IDLE_HIGH_DATA_EDGE_TRAILING| spi.I2CSPI_CLK_461kHz)time.sleep(1)print "Axis inicialization"X = axis(spi, 0, 1, MaxSpeed = SPEED) # set Number of Steps per axis Unit and set Direction of Rotation#X.Reset()X.GetACC()exit()print X.GetStatus()time.sleep(1)print "Setting maximal speed"print X.MaxSpeed(SPEED) # set maximal motor speedprint X.GetStatus()time.sleep(1)print X.Run(1, 20.456431)print X.GetStatus()time.sleep(5)print "Axis is running"for i in range(5):print iX.MoveWait(DISTANCE) # move forward and wait for motor stopprint "Changing direction of rotation.."time.sleep(1.1)X.MoveWait(-DISTANCE) # move backward and wait for motor stopprint "Changing direction of rotation.."time.sleep(1.1)X.Float(hard=False) # release powerfinally:print "stop"