C++ class for controlling DC motor with encoder feedback. Dependencies include LS7366LIB, MotCon, and PID.

Dependencies:   LS7366LIB MotCon2 PID

Dependents:   LPC1768_6axis_Arm

Committer:
jebradshaw
Date:
Thu Dec 17 19:06:27 2015 +0000
Revision:
5:79dcaa63700c
Parent:
4:4079f92f9c26
Child:
7:d0458137d6e0
C++ class for controlling DC motor with quadrature encoder feedback (is dependent on LS7366LIB, MotCon, and PID libraries)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jebradshaw 0:cf7192f9f99a 1
jebradshaw 0:cf7192f9f99a 2 #include "Axis.h"
jebradshaw 0:cf7192f9f99a 3 #include "LS7366.h"
jebradshaw 0:cf7192f9f99a 4 #include "MotCon.h"
jebradshaw 0:cf7192f9f99a 5 #include "PID.h"
jebradshaw 0:cf7192f9f99a 6
jebradshaw 2:653433f4ee72 7 Axis::Axis(SPI& spi, PinName cs, PinName pwm, PinName dir, PinName analog, int* limit, float totalCnts): _spi(spi), _cs(cs), _pwm(pwm), _dir(dir) , _analog(analog){
jebradshaw 4:4079f92f9c26 8 this->_cs = 1; // Initialize chip select as off (high)
jebradshaw 4:4079f92f9c26 9 this->_pwm = 0.0;
jebradshaw 4:4079f92f9c26 10 this->_dir = 0;
jebradshaw 4:4079f92f9c26 11 this->co = 0.0;
jebradshaw 4:4079f92f9c26 12 this->Tdelay = .01;
jebradshaw 4:4079f92f9c26 13 this->Pk = 120.0; //80.0; //rough gains, seem to work well but could use tuning
jebradshaw 4:4079f92f9c26 14 this->Ik = 55.0; //35.0;
jebradshaw 4:4079f92f9c26 15 this->Dk = 0.0;
jebradshaw 4:4079f92f9c26 16 this->set_point = 0.0;
jebradshaw 4:4079f92f9c26 17 this->set_point_last = 0.0;
jebradshaw 4:4079f92f9c26 18 this->pos = 0.0;
jebradshaw 4:4079f92f9c26 19 this->vel = 0.0;
jebradshaw 4:4079f92f9c26 20 this->acc = 0.0;
jebradshaw 4:4079f92f9c26 21 this->pos_cmd = 0.0;
jebradshaw 4:4079f92f9c26 22 this->vel_cmd = 0.0;
jebradshaw 4:4079f92f9c26 23 this->vel_avg_cmd = 0;
jebradshaw 4:4079f92f9c26 24 this->acc_cmd = 0.0;
jebradshaw 4:4079f92f9c26 25 this->vel_max = 2700.0 * Tdelay; //counts * Tdelay
jebradshaw 4:4079f92f9c26 26 this->acc_max = 1200.0 * Tdelay; //counts/sec/sec * Tdelay
jebradshaw 4:4079f92f9c26 27 this->p_higher = 0.0;
jebradshaw 4:4079f92f9c26 28 this->p_lower = 0.0;
jebradshaw 4:4079f92f9c26 29 this->vel_accum = 0.0;
jebradshaw 4:4079f92f9c26 30 this->moveTime = 0.0;
jebradshaw 4:4079f92f9c26 31 this->totalCounts = totalCnts;
jebradshaw 4:4079f92f9c26 32 this->enc = 0;
jebradshaw 4:4079f92f9c26 33 this->moveStatus = 0; //status flag to indicate state of profile movement
jebradshaw 4:4079f92f9c26 34 this->moveState = 0; //used for state machine in movement profiles
jebradshaw 4:4079f92f9c26 35 this->debug = 0;
jebradshaw 4:4079f92f9c26 36 this->update.attach(this, &Axis::paramUpdate, Tdelay);
jebradshaw 5:79dcaa63700c 37 this->axisState = 0;
jebradshaw 5:79dcaa63700c 38 this->mot_I_lim = .35;
jebradshaw 0:cf7192f9f99a 39
jebradshaw 4:4079f92f9c26 40 this->pid = new PID(0.0,0.0,0.0,Tdelay); //Kc, Ti, Td, interval
jebradshaw 4:4079f92f9c26 41 this->ls7366 = new LS7366(spi, cs); //LS7366 encoder interface IC
jebradshaw 4:4079f92f9c26 42 this->motcon = new MotCon(pwm, dir);
jebradshaw 4:4079f92f9c26 43 this->ptr_limit = limit;
jebradshaw 0:cf7192f9f99a 44
jebradshaw 0:cf7192f9f99a 45 //start at 0
jebradshaw 0:cf7192f9f99a 46 this->ls7366->LS7366_reset_counter();
jebradshaw 0:cf7192f9f99a 47 this->ls7366->LS7366_quad_mode_x4();
jebradshaw 0:cf7192f9f99a 48 this->ls7366->LS7366_write_DTR(0);
jebradshaw 0:cf7192f9f99a 49
jebradshaw 0:cf7192f9f99a 50 this->set_point = 0.0;
jebradshaw 0:cf7192f9f99a 51 this->pid->setSetPoint(this->set_point);
jebradshaw 0:cf7192f9f99a 52 this->enc = this->ls7366->LS7366_read_counter(); //update class variable
jebradshaw 0:cf7192f9f99a 53 }
jebradshaw 0:cf7192f9f99a 54
jebradshaw 2:653433f4ee72 55 void Axis::init(void){
jebradshaw 0:cf7192f9f99a 56 //resets the controllers internals
jebradshaw 0:cf7192f9f99a 57 this->pid->reset();
jebradshaw 0:cf7192f9f99a 58
jebradshaw 0:cf7192f9f99a 59 //Encoder counts limit
jebradshaw 2:653433f4ee72 60 this->pid->setInputLimits(-this->totalCounts, this->totalCounts);
jebradshaw 0:cf7192f9f99a 61 //Pwm output from 0.0 to 1.0
jebradshaw 0:cf7192f9f99a 62 this->pid->setOutputLimits(-1.0, 1.0);
jebradshaw 0:cf7192f9f99a 63 //If there's a bias.
jebradshaw 0:cf7192f9f99a 64 this->pid->setBias(0.0);
jebradshaw 0:cf7192f9f99a 65 this->pid->setMode(AUTO_MODE);
jebradshaw 0:cf7192f9f99a 66
jebradshaw 0:cf7192f9f99a 67 this->pid->setInterval(this->Tdelay);
jebradshaw 0:cf7192f9f99a 68
jebradshaw 0:cf7192f9f99a 69 //start at 0
jebradshaw 0:cf7192f9f99a 70 this->ls7366->LS7366_reset_counter();
jebradshaw 0:cf7192f9f99a 71 this->ls7366->LS7366_quad_mode_x4();
jebradshaw 0:cf7192f9f99a 72 this->ls7366->LS7366_write_DTR(0);
jebradshaw 0:cf7192f9f99a 73
jebradshaw 0:cf7192f9f99a 74 this->set_point = 0.0;
jebradshaw 0:cf7192f9f99a 75 this->pid->setSetPoint(this->set_point);
jebradshaw 0:cf7192f9f99a 76 this->enc = this->ls7366->LS7366_read_counter(); //update class variable
jebradshaw 0:cf7192f9f99a 77
jebradshaw 0:cf7192f9f99a 78 //resets the controllers internals
jebradshaw 0:cf7192f9f99a 79 this->pid->reset();
jebradshaw 0:cf7192f9f99a 80 //start at 0
jebradshaw 0:cf7192f9f99a 81 this->set_point = 0.0;
jebradshaw 0:cf7192f9f99a 82 this->pid->setSetPoint(0);
jebradshaw 0:cf7192f9f99a 83
jebradshaw 0:cf7192f9f99a 84 this->pid->setTunings(this->Pk, this->Ik, this->Dk); //turns on controller
jebradshaw 0:cf7192f9f99a 85 }
jebradshaw 0:cf7192f9f99a 86
jebradshaw 0:cf7192f9f99a 87 void Axis::paramUpdate(void){
jebradshaw 0:cf7192f9f99a 88 //testOut = 1;
jebradshaw 0:cf7192f9f99a 89 this->enc = this->ls7366->LS7366_read_counter();
jebradshaw 0:cf7192f9f99a 90 this->pos = (float)this->enc; // * this->countsPerDeg * PI/180.0; //times counts/degree and convert to radians
jebradshaw 0:cf7192f9f99a 91
jebradshaw 0:cf7192f9f99a 92 this->vel = (this->pos - this->pos_last) * this->Tdelay;
jebradshaw 0:cf7192f9f99a 93 this->acc = (this->vel - this->vel_last);
jebradshaw 0:cf7192f9f99a 94
jebradshaw 0:cf7192f9f99a 95 this->pid->setSetPoint(this->set_point);
jebradshaw 0:cf7192f9f99a 96
jebradshaw 0:cf7192f9f99a 97 //Update the process variable.
jebradshaw 0:cf7192f9f99a 98 this->pid->setProcessValue(this->pos);
jebradshaw 0:cf7192f9f99a 99 //Set the new output.
jebradshaw 0:cf7192f9f99a 100 this->co = this->pid->compute();
jebradshaw 0:cf7192f9f99a 101
jebradshaw 4:4079f92f9c26 102 if(this->axisState)
jebradshaw 4:4079f92f9c26 103 this->motcon->mot_control(this->co); //send controller output to PWM motor control command
jebradshaw 4:4079f92f9c26 104 else{
jebradshaw 4:4079f92f9c26 105 this->co = 0.0;
jebradshaw 4:4079f92f9c26 106 this->motcon->mot_control(0.0); //turn off motor command
jebradshaw 4:4079f92f9c26 107 }
jebradshaw 4:4079f92f9c26 108
jebradshaw 0:cf7192f9f99a 109 this->pos_last = this->pos;
jebradshaw 0:cf7192f9f99a 110 this->vel_last = this->vel;
jebradshaw 0:cf7192f9f99a 111 this->set_point_last = this->set_point;
jebradshaw 0:cf7192f9f99a 112 //testOut = 0;
jebradshaw 0:cf7192f9f99a 113 }
jebradshaw 0:cf7192f9f99a 114
jebradshaw 2:653433f4ee72 115 void Axis::center(void){
jebradshaw 2:653433f4ee72 116 this->pid->setInputLimits(-this->totalCounts, this->totalCounts);
jebradshaw 2:653433f4ee72 117
jebradshaw 5:79dcaa63700c 118 while((*this->ptr_limit == 1) && (this->readCurrent() < mot_I_lim)){ //limit switch not pressed and mot current not exceeded
jebradshaw 0:cf7192f9f99a 119 this->set_point += 100;
jebradshaw 5:79dcaa63700c 120 wait(.1);
jebradshaw 0:cf7192f9f99a 121 if(this->debug)
jebradshaw 2:653433f4ee72 122 printf("T=%.2f SP=%.3f co=%.3f pos=%.3f vel=%.3f acc=%.3f limit=%d motI=%.3f\r\n", t.read(), this->set_point, this->co, this->pos, this->vel, this->acc,*this->ptr_limit, this->_analog.read());
jebradshaw 0:cf7192f9f99a 123 }
jebradshaw 5:79dcaa63700c 124 wait(.5);
jebradshaw 5:79dcaa63700c 125 while((*this->ptr_limit == 0)){ //limit switch is pressed
jebradshaw 5:79dcaa63700c 126 this->set_point -= 10;
jebradshaw 5:79dcaa63700c 127 wait(.1);
jebradshaw 5:79dcaa63700c 128 if(this->debug)
jebradshaw 2:653433f4ee72 129 printf("T=%.2f SP=%.3f co=%.3f pos=%.3f vel=%.3f acc=%.3f limit=%d motI=%.3f\r\n", t.read(), this->set_point, this->co, this->pos, this->vel, this->acc,*this->ptr_limit, this->_analog.read());
jebradshaw 0:cf7192f9f99a 130 }
jebradshaw 5:79dcaa63700c 131 this->zero(); //zero channel
jebradshaw 0:cf7192f9f99a 132
jebradshaw 5:79dcaa63700c 133 this->set_point = -(totalCounts/2.0);
jebradshaw 5:79dcaa63700c 134 wait(5.0);
jebradshaw 5:79dcaa63700c 135 this->zero();
jebradshaw 0:cf7192f9f99a 136
jebradshaw 2:653433f4ee72 137 if(this->debug)
jebradshaw 2:653433f4ee72 138 printf("HOME END:T=%.2f SP=%.3f co=%.3f pos=%.3f vel=%.3f acc=%.3f limit=%d motI=%.3f\r\n", t.read(), this->set_point, this->co, this->pos, this->vel, this->acc,*this->ptr_limit, this->_analog.read());
jebradshaw 0:cf7192f9f99a 139 // pc.printf("End Home\r\n\r\n");
jebradshaw 0:cf7192f9f99a 140 }
jebradshaw 0:cf7192f9f99a 141
jebradshaw 2:653433f4ee72 142 void Axis::moveUpdate(void){
jebradshaw 2:653433f4ee72 143
jebradshaw 5:79dcaa63700c 144 /* if(*this->ptr_limit == 0){
jebradshaw 2:653433f4ee72 145 this->moveState = 4; //terminate the move
jebradshaw 2:653433f4ee72 146 printf("\r\nLimit reached on axis!\r\n");
jebradshaw 2:653433f4ee72 147 }
jebradshaw 5:79dcaa63700c 148 */
jebradshaw 2:653433f4ee72 149 if(this->debug)
jebradshaw 2:653433f4ee72 150 printf("T=%.2f SP=%.3f co=%.3f pos=%.3f vel=%.3f acc=%.3f limit=%d motI=%.3f\r\n", t.read(), this->set_point, this->co, this->pos, this->vel, this->acc,*this->ptr_limit, this->_analog.read());
jebradshaw 2:653433f4ee72 151
jebradshaw 0:cf7192f9f99a 152 switch(this->moveState){
jebradshaw 0:cf7192f9f99a 153 case 0:
jebradshaw 0:cf7192f9f99a 154 break;
jebradshaw 0:cf7192f9f99a 155
jebradshaw 0:cf7192f9f99a 156 //accelerate
jebradshaw 0:cf7192f9f99a 157 case 1:
jebradshaw 0:cf7192f9f99a 158 //testOut = 1;
jebradshaw 0:cf7192f9f99a 159 this->vel_accum += this->acc_cmd * this->Tdelay; //add acceleration to the velocity accumulator
jebradshaw 0:cf7192f9f99a 160 if(this->vel_avg_cmd > 0.0){ //check the sign of the movement
jebradshaw 0:cf7192f9f99a 161 if(this->vel_accum >= this->vel_cmd) //if the accumulator reaches or exceeds the velocity command
jebradshaw 0:cf7192f9f99a 162 this->vel_accum = this->vel_cmd; // only add the velocity command to the accumulator
jebradshaw 0:cf7192f9f99a 163 }
jebradshaw 0:cf7192f9f99a 164 else{ //if the sign was negative
jebradshaw 0:cf7192f9f99a 165 if(this->vel_accum <= this->vel_cmd)
jebradshaw 0:cf7192f9f99a 166 this->vel_accum = this->vel_cmd;
jebradshaw 0:cf7192f9f99a 167 }
jebradshaw 0:cf7192f9f99a 168 //testOut = 0;
jebradshaw 0:cf7192f9f99a 169
jebradshaw 0:cf7192f9f99a 170 this->set_point += this->vel_accum;
jebradshaw 0:cf7192f9f99a 171 //pc.printf("T=%.2f SP=%.3f co=%.3f enc=%d pos=%.3f vel=%.3f acc=%.3f vel_accum=%.2f accelCnt=%.2f \r\n", t.read(), con0.set_point, con0.co, con0.enc, con0.pos, con0.vel, con0.acc, vel_accum, accelCnt);
jebradshaw 0:cf7192f9f99a 172 //pc.printf("acc_up,%.2f,%.3f,%.1f,%.3f,%.3f,%.2f,%.2f\r\n", this->t.read(), this->set_point, this->pos, this->vel, this->acc, this->vel_accum, this->acc_cmd);
jebradshaw 0:cf7192f9f99a 173
jebradshaw 0:cf7192f9f99a 174 if(this->t.read()>=(this->moveTime/3.0) || (abs(this->vel_accum) > abs(this->vel_cmd)))
jebradshaw 0:cf7192f9f99a 175 this->moveState = 2;
jebradshaw 0:cf7192f9f99a 176 break;
jebradshaw 0:cf7192f9f99a 177
jebradshaw 0:cf7192f9f99a 178 //constant velocity
jebradshaw 0:cf7192f9f99a 179 case 2:
jebradshaw 0:cf7192f9f99a 180 //testOut = 1;
jebradshaw 0:cf7192f9f99a 181 //this->vel_accum += this->vel_cmd * this->Tdelay;
jebradshaw 0:cf7192f9f99a 182 this->set_point += this->vel_cmd;
jebradshaw 0:cf7192f9f99a 183 //testOut = 0;
jebradshaw 0:cf7192f9f99a 184 //pc.printf("T=%.2f SP=%.3f co=%.3f enc=%d pos=%.3f vel=%.3f acc=%.3f vel_accum=%.2f accelCnt=%.2f \r\n", t.read(), con0.set_point, con0.co, con0.enc, con0.pos, con0.vel, con0.acc, vel_accum, accelCnt);
jebradshaw 0:cf7192f9f99a 185 //pc.printf("vel_cn,%.2f,%.3f,%.1f,%.3f,%.3f,%.2f,%.2f\r\n", this->t.read(), this->set_point, this->pos, this->vel, this->acc, this->vel_accum, this->acc_cmd);
jebradshaw 0:cf7192f9f99a 186
jebradshaw 0:cf7192f9f99a 187 if(this->t.read()>=(2.0/3.0 * this->moveTime))
jebradshaw 0:cf7192f9f99a 188 this->moveState = 3;
jebradshaw 0:cf7192f9f99a 189 break;
jebradshaw 0:cf7192f9f99a 190
jebradshaw 0:cf7192f9f99a 191 //decelerate
jebradshaw 0:cf7192f9f99a 192 case 3:
jebradshaw 0:cf7192f9f99a 193 this->vel_accum -= this->acc_cmd * this->Tdelay;
jebradshaw 0:cf7192f9f99a 194
jebradshaw 0:cf7192f9f99a 195 this->set_point += this->vel_accum; //ramp down velocity by acceleration
jebradshaw 0:cf7192f9f99a 196 //pc.printf("T=%.2f SP=%.3f co=%.3f enc=%d pos=%.3f vel=%.3f acc=%.3f vel_accum=%.2f accelCnt=%.2f \r\n", t.read(), con0.set_point, con0.co, con0.enc, con0.pos, con0.vel, con0.acc, vel_accum, accelCnt);
jebradshaw 0:cf7192f9f99a 197 //pc.printf("acc_dn,%.2f,%.3f,%.1f,%.3f,%.3f,%.2f,%.2f\r\n", this->t.read(), this->set_point, this->pos, this->vel, this->acc, this->vel_accum, this->acc_cmd);
jebradshaw 0:cf7192f9f99a 198
jebradshaw 0:cf7192f9f99a 199 if(this->vel_avg_cmd > 0.0){
jebradshaw 1:cd249816dba8 200 if(this->pos_cmd <= this->pos){
jebradshaw 1:cd249816dba8 201 //finish with position command
jebradshaw 1:cd249816dba8 202 this->set_point = this->pos_cmd;
jebradshaw 0:cf7192f9f99a 203 this->moveState = 4;
jebradshaw 1:cd249816dba8 204 }
jebradshaw 0:cf7192f9f99a 205 }
jebradshaw 0:cf7192f9f99a 206 else{
jebradshaw 1:cd249816dba8 207 if(this->pos_cmd >= this->pos){
jebradshaw 1:cd249816dba8 208 //finish with position command
jebradshaw 5:79dcaa63700c 209 //this->set_point = this->pos_cmd; //May be causing jerk after multi-axis movements J Bradshaw 20151124
jebradshaw 1:cd249816dba8 210 this->moveState = 4;
jebradshaw 1:cd249816dba8 211 }
jebradshaw 0:cf7192f9f99a 212 }
jebradshaw 0:cf7192f9f99a 213
jebradshaw 0:cf7192f9f99a 214 if(this->t.read()>=this->moveTime){
jebradshaw 1:cd249816dba8 215 //finish with position command
jebradshaw 5:79dcaa63700c 216 //this->set_point = this->pos_cmd; //May be causing jerk after multi-axis movements J Bradshaw 20151124
jebradshaw 0:cf7192f9f99a 217 this->moveState = 4;
jebradshaw 0:cf7192f9f99a 218 }
jebradshaw 0:cf7192f9f99a 219 break;
jebradshaw 0:cf7192f9f99a 220
jebradshaw 0:cf7192f9f99a 221 case 4:
jebradshaw 0:cf7192f9f99a 222 this->moveProfile.detach(); //turn off the trapazoidal update ticker
jebradshaw 0:cf7192f9f99a 223 this->t.stop();
jebradshaw 0:cf7192f9f99a 224 this->moveState = 0;
jebradshaw 0:cf7192f9f99a 225 break;
jebradshaw 0:cf7192f9f99a 226 }//switch moveStatus
jebradshaw 0:cf7192f9f99a 227 return;
jebradshaw 0:cf7192f9f99a 228 }
jebradshaw 0:cf7192f9f99a 229
jebradshaw 0:cf7192f9f99a 230 // position - encoder position to move to
jebradshaw 0:cf7192f9f99a 231 // time - duration of the movement
jebradshaw 0:cf7192f9f99a 232 void Axis::moveTrapezoid(float positionCmd, float time){
jebradshaw 0:cf7192f9f99a 233 this->pos_cmd = positionCmd;
jebradshaw 0:cf7192f9f99a 234 this->moveTime = time;
jebradshaw 4:4079f92f9c26 235 float enc_distance = this->pos_cmd - (float)this->enc;// * 1.0/con0.countsPerDeg * 180.0/PI;
jebradshaw 0:cf7192f9f99a 236
jebradshaw 0:cf7192f9f99a 237 this->vel_avg_cmd = enc_distance / time;
jebradshaw 0:cf7192f9f99a 238 this->vel_cmd = 1.5 * this->vel_avg_cmd * this->Tdelay;
jebradshaw 0:cf7192f9f99a 239 this->acc_cmd = 4.5 * (enc_distance / (this->moveTime * this->moveTime)) * this->Tdelay;
jebradshaw 0:cf7192f9f99a 240
jebradshaw 0:cf7192f9f99a 241 //pc.printf("tx=%f encdist=%.3f vAvg=%.3f vMax=%.3f Acc=%.3f \r\n", this->moveTime, enc_distance,this->vel_avg_cmd,this->vel_cmd,this->acc_cmd);
jebradshaw 0:cf7192f9f99a 242
jebradshaw 0:cf7192f9f99a 243 //establish encoder velocities and accelerations for position control per Tdelay
jebradshaw 0:cf7192f9f99a 244 this->vel_accum = 0.0;
jebradshaw 0:cf7192f9f99a 245
jebradshaw 0:cf7192f9f99a 246 // this->set_point = this->pos;
jebradshaw 0:cf7192f9f99a 247 this->moveState = 1;
jebradshaw 0:cf7192f9f99a 248 this->t.reset();
jebradshaw 0:cf7192f9f99a 249 this->t.start();
jebradshaw 0:cf7192f9f99a 250 this->moveProfile.attach(this, &Axis::moveUpdate, this->Tdelay);
jebradshaw 0:cf7192f9f99a 251 }
jebradshaw 2:653433f4ee72 252
jebradshaw 4:4079f92f9c26 253 float Axis::readCurrent(void){
jebradshaw 4:4079f92f9c26 254 motCurrent = this->_analog.read() * 3.3;
jebradshaw 4:4079f92f9c26 255 return motCurrent;
jebradshaw 2:653433f4ee72 256 }
jebradshaw 2:653433f4ee72 257
jebradshaw 2:653433f4ee72 258 void Axis::axisOff(void){
jebradshaw 4:4079f92f9c26 259 this->co = 0;
jebradshaw 2:653433f4ee72 260 this->axisState = 0;
jebradshaw 2:653433f4ee72 261 }
jebradshaw 2:653433f4ee72 262
jebradshaw 2:653433f4ee72 263 void Axis::axisOn(void){
jebradshaw 4:4079f92f9c26 264 this->co = 0.0;
jebradshaw 4:4079f92f9c26 265 this->pid->reset();
jebradshaw 4:4079f92f9c26 266 //start at 0
jebradshaw 4:4079f92f9c26 267 this->set_point = 0.0;
jebradshaw 4:4079f92f9c26 268 this->pid->setSetPoint(0);
jebradshaw 4:4079f92f9c26 269
jebradshaw 4:4079f92f9c26 270 this->pid->setTunings(this->Pk, this->Ik, this->Dk); //turns on controller
jebradshaw 2:653433f4ee72 271 this->axisState = 1;
jebradshaw 5:79dcaa63700c 272 }
jebradshaw 5:79dcaa63700c 273
jebradshaw 5:79dcaa63700c 274 void Axis::zero(void){
jebradshaw 5:79dcaa63700c 275 this->ls7366->LS7366_reset_counter();
jebradshaw 5:79dcaa63700c 276 this->ls7366->LS7366_quad_mode_x4();
jebradshaw 5:79dcaa63700c 277 this->ls7366->LS7366_write_DTR(0);
jebradshaw 5:79dcaa63700c 278
jebradshaw 5:79dcaa63700c 279 this->set_point = 0.0;
jebradshaw 5:79dcaa63700c 280 this->pid->setSetPoint(0);
jebradshaw 2:653433f4ee72 281 }