Numero Uno / Mbed 2 deprecated TheProgram

Dependencies:   EMG HIDScope PID QEI mbed TextLCD

Committer:
ewoud
Date:
Mon Oct 26 14:26:13 2015 +0000
Revision:
9:3e19a344c025
Parent:
8:b0971033dc41
Child:
10:819fb5288aa0
moving works quite well, started on lcd output while playing

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ewoud 3:70f78cfc0f25 1
ewoud 2:8f9b6c1e89cf 2 #define RATE 0.005f
ewoud 0:ca94aa9bf823 3 #define Kc 0.30
ewoud 0:ca94aa9bf823 4 #define Ti 0.00
ewoud 0:ca94aa9bf823 5 #define Td 0.0
ewoud 0:ca94aa9bf823 6
ewoud 3:70f78cfc0f25 7 ///////////////////////
ewoud 3:70f78cfc0f25 8 /// pin layout ////////
ewoud 3:70f78cfc0f25 9 ///////////////////////
ewoud 3:70f78cfc0f25 10
ewoud 0:ca94aa9bf823 11 Serial pc(USBTX, USBRX);
ewoud 8:b0971033dc41 12 TextLCD lcd(D9, D14, D15, PTB19, PTB18, A4); // rs, e, d4 to d7
ewoud 3:70f78cfc0f25 13
ewoud 8:b0971033dc41 14 // Left motor. (motor connection 1)
ewoud 8:b0971033dc41 15 PwmOut leftMotor(D5);
ewoud 0:ca94aa9bf823 16 DigitalOut leftDirection(D4);
ewoud 0:ca94aa9bf823 17 QEI leftQei(D12, D13, NC, 624);
ewoud 0:ca94aa9bf823 18 PID leftController(Kc, Ti, Td, RATE);
ewoud 0:ca94aa9bf823 19
ewoud 8:b0971033dc41 20 // Right motor (motor connection 2)
ewoud 0:ca94aa9bf823 21 PwmOut rightMotor(D6);
ewoud 0:ca94aa9bf823 22 DigitalOut rightDirection(D7);
ewoud 0:ca94aa9bf823 23 QEI rightQei(D11, D10, NC, 624);
ewoud 0:ca94aa9bf823 24 PID rightController(Kc, Ti, Td, RATE);
ewoud 0:ca94aa9bf823 25
ewoud 0:ca94aa9bf823 26 // edge leads
ewoud 3:70f78cfc0f25 27 DigitalIn edgeleft(PTC5);
ewoud 3:70f78cfc0f25 28 DigitalIn edgeright(PTC7);
ewoud 3:70f78cfc0f25 29 DigitalIn edgetop(PTC0);
ewoud 3:70f78cfc0f25 30 DigitalIn edgebottom(PTC9);
ewoud 0:ca94aa9bf823 31
ewoud 3:70f78cfc0f25 32 // emg input
ewoud 0:ca94aa9bf823 33 AnalogIn pot1(A0);
ewoud 0:ca94aa9bf823 34 AnalogIn pot2(A1);
ewoud 3:70f78cfc0f25 35
ewoud 3:70f78cfc0f25 36 // user interface
ewoud 3:70f78cfc0f25 37 DigitalOut outofboundsled(LED1);
ewoud 3:70f78cfc0f25 38 InterruptIn startButton(D3);
ewoud 3:70f78cfc0f25 39 InterruptIn stopButton(D2);
ewoud 6:ae2ce89dd695 40 InterruptIn initpositionButton(PTC6);
ewoud 3:70f78cfc0f25 41 HIDScope scope(5);
ewoud 3:70f78cfc0f25 42
ewoud 3:70f78cfc0f25 43 ////////////////////////////
ewoud 3:70f78cfc0f25 44 //////// Timers ////////////
ewoud 3:70f78cfc0f25 45 ////////////////////////////
ewoud 3:70f78cfc0f25 46 Ticker scopeTimer;
ewoud 9:3e19a344c025 47 Timer playTimer;
ewoud 0:ca94aa9bf823 48 Ticker motorControlTicker;
ewoud 9:3e19a344c025 49 Ticker lcdTicker;
ewoud 9:3e19a344c025 50 bool lcdGoFlag=false;
ewoud 0:ca94aa9bf823 51 bool goFlag=false;
ewoud 0:ca94aa9bf823 52 bool systemOn=false;
ewoud 6:ae2ce89dd695 53 bool initposition_go=false;
ewoud 3:70f78cfc0f25 54
ewoud 3:70f78cfc0f25 55
ewoud 3:70f78cfc0f25 56 ////////////////////////////
ewoud 3:70f78cfc0f25 57 ///////// Variables ////////
ewoud 3:70f78cfc0f25 58 ////////////////////////////
ewoud 3:70f78cfc0f25 59
ewoud 3:70f78cfc0f25 60
ewoud 3:70f78cfc0f25 61 // Working variables for motors
ewoud 0:ca94aa9bf823 62 volatile int leftPulses = 0;
ewoud 0:ca94aa9bf823 63 volatile float leftAngle=0;
ewoud 0:ca94aa9bf823 64 volatile int leftPrevPulses = 0;
ewoud 0:ca94aa9bf823 65 volatile float leftPwmDuty = 0.0;
ewoud 0:ca94aa9bf823 66 volatile float leftVelocity = 0.0;
ewoud 0:ca94aa9bf823 67 float leftRequest=0;
ewoud 0:ca94aa9bf823 68
ewoud 0:ca94aa9bf823 69 volatile int rightPulses = 0;
ewoud 0:ca94aa9bf823 70 volatile int rightPrevPulses = 0;
ewoud 0:ca94aa9bf823 71 volatile float rightAngle =0;
ewoud 0:ca94aa9bf823 72 volatile float rightPwmDuty = 0.0;
ewoud 0:ca94aa9bf823 73 volatile float rightVelocity = 0.0;
ewoud 0:ca94aa9bf823 74 float rightRequest=0;
ewoud 0:ca94aa9bf823 75
ewoud 3:70f78cfc0f25 76 // working vars for calculation
ewoud 3:70f78cfc0f25 77 float horrequest;
ewoud 3:70f78cfc0f25 78 float verrequest;
ewoud 3:70f78cfc0f25 79 float grenslaag=0.3;
ewoud 3:70f78cfc0f25 80 float grenshoog=0.7;
ewoud 0:ca94aa9bf823 81 float round=27720;
ewoud 9:3e19a344c025 82 float maxspeed=1; //cm/sec
ewoud 0:ca94aa9bf823 83 float currentX;
ewoud 0:ca94aa9bf823 84 float currentY;
ewoud 8:b0971033dc41 85 float l=57;
ewoud 0:ca94aa9bf823 86 float toX;
ewoud 0:ca94aa9bf823 87 float toY;
ewoud 0:ca94aa9bf823 88 float toLeftAngle;
ewoud 0:ca94aa9bf823 89 float toRightAngle;
ewoud 0:ca94aa9bf823 90 float M_PI=3.14159265359;
ewoud 9:3e19a344c025 91 string text;
ewoud 0:ca94aa9bf823 92
ewoud 3:70f78cfc0f25 93 //////////////////////////////////
ewoud 3:70f78cfc0f25 94 ////// initialize functions //////
ewoud 3:70f78cfc0f25 95 //////////////////////////////////
ewoud 0:ca94aa9bf823 96
ewoud 0:ca94aa9bf823 97 void initMotors(){
ewoud 0:ca94aa9bf823 98 //Initialization of motor
ewoud 0:ca94aa9bf823 99 leftMotor.period_us(50);
ewoud 0:ca94aa9bf823 100 leftMotor = 0.0;
ewoud 0:ca94aa9bf823 101 leftDirection = 1;
ewoud 0:ca94aa9bf823 102
ewoud 0:ca94aa9bf823 103 rightMotor.period_us(50);
ewoud 0:ca94aa9bf823 104 rightMotor = 0.0;
ewoud 0:ca94aa9bf823 105 rightDirection = 1;
ewoud 0:ca94aa9bf823 106
ewoud 0:ca94aa9bf823 107 }
ewoud 0:ca94aa9bf823 108
ewoud 0:ca94aa9bf823 109 void initPIDs(){
ewoud 0:ca94aa9bf823 110 //Initialization of PID controller
ewoud 3:70f78cfc0f25 111 leftController.setInputLimits(-90.0, 90.0);
ewoud 0:ca94aa9bf823 112 leftController.setOutputLimits(-1.0, 1.0);
ewoud 0:ca94aa9bf823 113 leftController.setBias(0);
ewoud 0:ca94aa9bf823 114 leftController.setDeadzone(-0.4, 0.4);
ewoud 0:ca94aa9bf823 115 leftController.setMode(AUTO_MODE);
ewoud 0:ca94aa9bf823 116
ewoud 3:70f78cfc0f25 117 rightController.setInputLimits(-90.0, 90.0);
ewoud 0:ca94aa9bf823 118 rightController.setOutputLimits(-1.0, 1.0);
ewoud 0:ca94aa9bf823 119 rightController.setBias(0);
ewoud 0:ca94aa9bf823 120 rightController.setDeadzone(-0.4, 0.4);
ewoud 0:ca94aa9bf823 121 rightController.setMode(AUTO_MODE);
ewoud 0:ca94aa9bf823 122 }