Mainscript inclusief PID (uitgevoerd middag 31-10-2014)

Dependencies:   Encoder HIDScope TextLCD mbed

Fork of Main-script_groep7 by Peter Bartels

Committer:
phgbartels
Date:
Fri Oct 31 14:45:43 2014 +0000
Revision:
7:f016dd2e8ea9
Parent:
6:565b4fc42323
STATISCHE PID WAARDEN METEN

Who changed what in which revision?

UserRevisionLine numberNew contents of line
phgbartels 0:2386012c6594 1 /********************************************/
phgbartels 0:2386012c6594 2 /* */
phgbartels 0:2386012c6594 3 /* BRONCODE GROEP 7, MODULE 9, 2014 */
phgbartels 0:2386012c6594 4 /* *-THE SLAP-* */
phgbartels 0:2386012c6594 5 /* */
phgbartels 0:2386012c6594 6 /* -Anne ten Dam */
phgbartels 0:2386012c6594 7 /* -Laura de Heus */
phgbartels 0:2386012c6594 8 /* -Moniek Strijdveen */
phgbartels 0:2386012c6594 9 /* -Bart Arendshorst */
phgbartels 0:2386012c6594 10 /* -Peter Bartels */
phgbartels 0:2386012c6594 11 /********************************************/
phgbartels 0:2386012c6594 12
phgbartels 0:2386012c6594 13 /*
phgbartels 0:2386012c6594 14 #include voor alle libraries
phgbartels 0:2386012c6594 15 */
phgbartels 0:2386012c6594 16 #include "TextLCD.h"
phgbartels 0:2386012c6594 17 #include "mbed.h"
phgbartels 0:2386012c6594 18 #include "encoder.h"
phgbartels 1:b08ac32d1ddc 19 //#include "HIDScope.h"
phgbartels 0:2386012c6594 20 #include "PwmOut.h"
phgbartels 0:2386012c6594 21
phgbartels 0:2386012c6594 22 /*
phgbartels 0:2386012c6594 23 #define vaste waarden
phgbartels 0:2386012c6594 24 */
phgbartels 0:2386012c6594 25 /*definieren pinnen Motor 1*/
phgbartels 0:2386012c6594 26 #define M1_PWM PTA5
phgbartels 0:2386012c6594 27 #define M1_DIR PTA4
phgbartels 0:2386012c6594 28 #define M2_PWM PTC8
phgbartels 0:2386012c6594 29 #define M2_DIR PTC9
phgbartels 0:2386012c6594 30 /*Definieren minimale waarden PWM per motor*/
phgbartels 0:2386012c6594 31 #define PWM1_min_50 0.529 /*met koppelstuk!*/
phgbartels 0:2386012c6594 32 #define PWM2_min_30 0.529 /*aanpassen! Klopt nog niet met koppelstuk*/
phgbartels 0:2386012c6594 33 /*Definieren om de hoeveel seconden er gegevens naar de HID-scope gestuurd worden.*/
phgbartels 0:2386012c6594 34 #define TSAMP 0.005
phgbartels 7:f016dd2e8ea9 35 #define K_P (80000)
phgbartels 7:f016dd2e8ea9 36 #define K_I (0.01)
phgbartels 7:f016dd2e8ea9 37 #define K_D (0.01)
phgbartels 0:2386012c6594 38 //#define K_D (0.0005 /TSAMP)
phgbartels 0:2386012c6594 39 #define I_LIMIT 100.
phgbartels 0:2386012c6594 40 #define PI 3.1415926535897
phgbartels 0:2386012c6594 41 #define lengte_arm 0.5
phgbartels 0:2386012c6594 42
phgbartels 0:2386012c6594 43 /*
phgbartels 0:2386012c6594 44 Geef een naam aan een actie en vertel welke pinnen hiervoor gebruikt worden.
phgbartels 0:2386012c6594 45 */
phgbartels 0:2386012c6594 46 TextLCD lcd(PTD2, PTA12, PTB2, PTB3, PTC2, PTA13, TextLCD::LCD16x2); // rs, e, d4-d7
phgbartels 0:2386012c6594 47 Encoder motor1(PTD3,PTD1);
phgbartels 0:2386012c6594 48 Encoder motor2(PTD5, PTD0);
phgbartels 0:2386012c6594 49 PwmOut pwm_motor1(M1_PWM);
phgbartels 0:2386012c6594 50 PwmOut pwm_motor2(M2_PWM);
phgbartels 0:2386012c6594 51 DigitalOut motordir1(M1_DIR);
phgbartels 0:2386012c6594 52 DigitalOut motordir2(M2_DIR);
phgbartels 0:2386012c6594 53 DigitalOut LEDGREEN(LED_GREEN);
phgbartels 0:2386012c6594 54 DigitalOut LEDRED(LED_RED);
phgbartels 4:377ddd65e4a6 55 Serial pc(USBTX,USBRX);
phgbartels 0:2386012c6594 56 /*
phgbartels 0:2386012c6594 57 definieer namen aan var, float, int, static float, uint8_t, uint16_t etc. en geef ze eventueel een waarde
phgbartels 0:2386012c6594 58 */
phgbartels 0:2386012c6594 59 Ticker statemachine;
phgbartels 0:2386012c6594 60 Ticker screen;
phgbartels 0:2386012c6594 61 int previous_herhalingen = 0;
phgbartels 1:b08ac32d1ddc 62 int current_herhalingen = 0;
phgbartels 0:2386012c6594 63 int PWM2_percentage = 100;
phgbartels 0:2386012c6594 64 int aantal_rotaties_1 = 10;
phgbartels 0:2386012c6594 65 int aantalcr_1 = 1600;
phgbartels 0:2386012c6594 66 int aantalcr_2 = 960;
phgbartels 0:2386012c6594 67 int beginpos_motor1;
phgbartels 0:2386012c6594 68 int beginpos_motor1_new;
phgbartels 0:2386012c6594 69 int beginpos_motor2;
phgbartels 0:2386012c6594 70 int beginpos_motor2_new;
phgbartels 0:2386012c6594 71 int previous_pos_motor1 = 0;
phgbartels 0:2386012c6594 72 int current_pos_motor1;
phgbartels 5:4842219cb77c 73 int EMG = 1;
phgbartels 0:2386012c6594 74 int delta_pos_motor1_puls;
phgbartels 0:2386012c6594 75 void clamp(float * in, float min, float max);
phgbartels 0:2386012c6594 76 volatile bool looptimerflag;
phgbartels 2:de7b6c1d67c4 77 int16_t gewenste_snelheid = 2;
phgbartels 2:de7b6c1d67c4 78 int16_t gewenste_snelheid_rad = 4;
phgbartels 2:de7b6c1d67c4 79 int16_t gewenste_snelheid_rad_return = 1;
phgbartels 0:2386012c6594 80 float pid(float setpoint, float measurement);
phgbartels 0:2386012c6594 81 float pos_motor1_rad;
phgbartels 0:2386012c6594 82 float PWM1_percentage = 0;
phgbartels 0:2386012c6594 83 float delta_pos_motor1_rad;
phgbartels 0:2386012c6594 84 float snelheid_motor1_rad;
phgbartels 0:2386012c6594 85 float snelheid_arm_ms;
phgbartels 0:2386012c6594 86 float PWM1;
phgbartels 0:2386012c6594 87 float PWM2;
phgbartels 0:2386012c6594 88 float Speed_motor1;
phgbartels 0:2386012c6594 89 float Speed_motor1rad;
phgbartels 1:b08ac32d1ddc 90 float setpoint = 0;
phgbartels 1:b08ac32d1ddc 91 float prev_setpoint = 0;
phgbartels 7:f016dd2e8ea9 92 float marge = 0;
phgbartels 0:2386012c6594 93
phgbartels 1:b08ac32d1ddc 94 //HIDScope scope(6);
phgbartels 0:2386012c6594 95
phgbartels 0:2386012c6594 96 enum state_t {RUST, ARM_KALIBRATIE, EMG_KALIBRATIE, METEN_RICHTING, METEN_HOOGTE, INSTELLEN_RICHTING, SLAAN, RETURN2RUST}; //verschillende stadia definieren voor gebruik in CASES
phgbartels 0:2386012c6594 97 state_t state = RUST;
phgbartels 0:2386012c6594 98
phgbartels 0:2386012c6594 99 //functies die vanuit de statemachinefunction aangeroepen kunnen worden
phgbartels 0:2386012c6594 100 void rust() {
phgbartels 0:2386012c6594 101 current_herhalingen = previous_herhalingen + 1; previous_herhalingen = current_herhalingen;
phgbartels 0:2386012c6594 102 }
phgbartels 0:2386012c6594 103
phgbartels 0:2386012c6594 104 void arm_kalibratie() {
phgbartels 0:2386012c6594 105 //voor nu om de loop te doorlopen wordt onderstaande code gebruikt. Nogmaal gesproken moet er gewacht worden op een 'hoog' signaal van een knop
phgbartels 0:2386012c6594 106 current_herhalingen = previous_herhalingen + 1; previous_herhalingen = current_herhalingen;
phgbartels 0:2386012c6594 107 motor1.setPosition(0);
phgbartels 1:b08ac32d1ddc 108 motor2.setPosition(0);
phgbartels 0:2386012c6594 109 }
phgbartels 0:2386012c6594 110
phgbartels 0:2386012c6594 111 void emg_kalibratie() {
phgbartels 0:2386012c6594 112 current_herhalingen = previous_herhalingen + 1; previous_herhalingen = current_herhalingen;
phgbartels 0:2386012c6594 113 }
phgbartels 0:2386012c6594 114
phgbartels 0:2386012c6594 115 void meten_richting() {
phgbartels 0:2386012c6594 116 current_herhalingen = previous_herhalingen + 1; previous_herhalingen = current_herhalingen;
phgbartels 0:2386012c6594 117 }
phgbartels 0:2386012c6594 118
phgbartels 0:2386012c6594 119 void meten_hoogte() {
phgbartels 0:2386012c6594 120 current_herhalingen = previous_herhalingen + 1; previous_herhalingen = current_herhalingen;
phgbartels 0:2386012c6594 121 }
phgbartels 0:2386012c6594 122
phgbartels 0:2386012c6594 123 void instellen_richting() {
phgbartels 0:2386012c6594 124 current_herhalingen = previous_herhalingen + 1; previous_herhalingen = current_herhalingen;
phgbartels 0:2386012c6594 125 }
phgbartels 0:2386012c6594 126
phgbartels 7:f016dd2e8ea9 127 void GotoPosition (float position_setpoint_rad, float speed_radpersecond, float marge) {
phgbartels 5:4842219cb77c 128
phgbartels 0:2386012c6594 129 current_pos_motor1 = motor1.getPosition(); //bekijk na elke 0.005s wat de huidige 'waarde' van de encoder is
phgbartels 5:4842219cb77c 130 //delta_pos_motor1_puls = current_pos_motor1 - previous_pos_motor1; //Bereken wat het verschil in waarde is voor het berekenen van de snelheid(puls)
phgbartels 0:2386012c6594 131 pos_motor1_rad = current_pos_motor1/(1600/(2*PI)); //echte waarde omrekenen naar rad voor (positie) PID regelaar
phgbartels 5:4842219cb77c 132 //delta_pos_motor1_rad = delta_pos_motor1_puls/(1600/(2*PI)); //delta waarde omrekenen naar rad voor snelheidsbepaling (rad)
phgbartels 2:de7b6c1d67c4 133 //snelheid_motor1_rad = delta_pos_motor1_rad / TSAMP; //rad delen door TSAMP om rad/s te verkrijgen
phgbartels 2:de7b6c1d67c4 134 //snelheid_arm_ms = snelheid_motor1_rad * lengte_arm; //deze waarde maar lengte van de arm om de snelheid van het uiteinde van die arm te verkrijgen
phgbartels 1:b08ac32d1ddc 135 //scope.set(0, snelheid_motor1_rad);
phgbartels 0:2386012c6594 136
phgbartels 0:2386012c6594 137 previous_pos_motor1 = current_pos_motor1; //sla de huidige waarde op als vorige waarde.
phgbartels 0:2386012c6594 138
phgbartels 0:2386012c6594 139 //nu gaan we positie regelen i.p.v. snelheid.
phgbartels 5:4842219cb77c 140
phgbartels 7:f016dd2e8ea9 141 if (fabs(pos_motor1_rad - position_setpoint_rad) <= marge) //if position error < ...rad, then stop.
phgbartels 0:2386012c6594 142 {
phgbartels 3:156c3e536ed4 143 speed_radpersecond = 0;
phgbartels 4:377ddd65e4a6 144 setpoint = pos_motor1_rad;
phgbartels 2:de7b6c1d67c4 145 current_herhalingen = previous_herhalingen + 1;
phgbartels 2:de7b6c1d67c4 146 previous_herhalingen = current_herhalingen;
phgbartels 4:377ddd65e4a6 147 pc.printf("stop\n\r");
phgbartels 5:4842219cb77c 148 PWM1_percentage = 0;
phgbartels 0:2386012c6594 149 }
phgbartels 4:377ddd65e4a6 150 else if(pos_motor1_rad - position_setpoint_rad < 0)
phgbartels 4:377ddd65e4a6 151 {
phgbartels 5:4842219cb77c 152 setpoint = prev_setpoint +( TSAMP * speed_radpersecond);
phgbartels 5:4842219cb77c 153 PWM1_percentage = pid(setpoint, pos_motor1_rad);
phgbartels 4:377ddd65e4a6 154 }
phgbartels 3:156c3e536ed4 155 else
phgbartels 4:377ddd65e4a6 156 {
phgbartels 5:4842219cb77c 157 setpoint = prev_setpoint -( TSAMP * speed_radpersecond);
phgbartels 5:4842219cb77c 158 PWM1_percentage = pid(setpoint, pos_motor1_rad);
phgbartels 4:377ddd65e4a6 159 }
phgbartels 0:2386012c6594 160 /*new_pwm = (setpoint - motor1.getPosition())*.001; -> P action*/
phgbartels 7:f016dd2e8ea9 161 pc.printf("%d\n\r",current_pos_motor1);
phgbartels 4:377ddd65e4a6 162
phgbartels 5:4842219cb77c 163
phgbartels 1:b08ac32d1ddc 164 //scope.set(1, setpoint-pos_motor1_rad);
phgbartels 0:2386012c6594 165
phgbartels 0:2386012c6594 166 if (PWM1_percentage < -100)
phgbartels 0:2386012c6594 167 {
phgbartels 0:2386012c6594 168 PWM1_percentage = -100;
phgbartels 0:2386012c6594 169 }
phgbartels 0:2386012c6594 170 else if (PWM1_percentage >100)
phgbartels 0:2386012c6594 171 {
phgbartels 0:2386012c6594 172 PWM1_percentage =100;
phgbartels 0:2386012c6594 173 }
phgbartels 0:2386012c6594 174
phgbartels 4:377ddd65e4a6 175 if(PWM1_percentage < 0)
phgbartels 0:2386012c6594 176 {
phgbartels 0:2386012c6594 177 motordir1 = 1;
phgbartels 0:2386012c6594 178 }
phgbartels 0:2386012c6594 179 else
phgbartels 0:2386012c6594 180 {
phgbartels 0:2386012c6594 181 motordir1 = 0;
phgbartels 0:2386012c6594 182 }
phgbartels 0:2386012c6594 183
phgbartels 4:377ddd65e4a6 184 pwm_motor1.write(abs(PWM1_percentage/100.));//abs(((1-PWM1_min_50)/100)*PWM1_percentage + PWM1_min_50));
phgbartels 1:b08ac32d1ddc 185 //scope.set(5, abs(((1-PWM1_min_50)/100)*PWM1_percentage + PWM1_min_50));
phgbartels 0:2386012c6594 186 prev_setpoint = setpoint;
phgbartels 2:de7b6c1d67c4 187 //scope.send();
phgbartels 2:de7b6c1d67c4 188 }
phgbartels 2:de7b6c1d67c4 189
phgbartels 3:156c3e536ed4 190
phgbartels 0:2386012c6594 191
phgbartels 0:2386012c6594 192 float pid(float setpoint, float measurement)
phgbartels 0:2386012c6594 193 {
phgbartels 0:2386012c6594 194 float error;
phgbartels 0:2386012c6594 195 static float prev_error = 0;
phgbartels 0:2386012c6594 196 float out_p = 0;
phgbartels 0:2386012c6594 197 static float out_i = 0;
phgbartels 0:2386012c6594 198 float out_d = 0;
phgbartels 0:2386012c6594 199 error = (setpoint-measurement);
phgbartels 0:2386012c6594 200 out_p = error*K_P;
phgbartels 0:2386012c6594 201 out_i += error*K_I;
phgbartels 0:2386012c6594 202 out_d = (error-prev_error)*K_D;
phgbartels 0:2386012c6594 203 clamp(&out_i,-I_LIMIT,I_LIMIT);
phgbartels 0:2386012c6594 204 prev_error = error;
phgbartels 1:b08ac32d1ddc 205 //scope.set(2, out_p);
phgbartels 1:b08ac32d1ddc 206 //scope.set(3, out_i);
phgbartels 1:b08ac32d1ddc 207 //scope.set(4, out_d);
phgbartels 0:2386012c6594 208 return out_p + out_i + out_d;
phgbartels 0:2386012c6594 209 }
phgbartels 0:2386012c6594 210
phgbartels 0:2386012c6594 211 void clamp(float* in, float min, float max) // "*" is een pointer (verwijst naar het adres waar een variebele instaat). Dus je slaat niet de variabele op
phgbartels 0:2386012c6594 212 // maar de locatie van de variabele.
phgbartels 0:2386012c6594 213 {
phgbartels 0:2386012c6594 214 *in > min ? /*(*/*in < max? /*niets doen*/ : *in = max/*)*/: *in = min; // a ? b : c --> als a waar is, dan doe je b, en anders c
phgbartels 0:2386012c6594 215 // *in = het getal dat staat op locatie van in --> waarde van new_pwm
phgbartels 0:2386012c6594 216 }
phgbartels 0:2386012c6594 217
phgbartels 0:2386012c6594 218 void statemachinefunction()
phgbartels 0:2386012c6594 219 {
phgbartels 0:2386012c6594 220 switch(state) {
phgbartels 0:2386012c6594 221 case RUST: {
phgbartels 0:2386012c6594 222 rust();
phgbartels 0:2386012c6594 223 /*voorwaarde wanneer hij door kan naar de volgende case*/
phgbartels 5:4842219cb77c 224 if (current_herhalingen == 100 && EMG == 1)
phgbartels 0:2386012c6594 225 {
phgbartels 0:2386012c6594 226 current_herhalingen = 0;
phgbartels 0:2386012c6594 227 previous_herhalingen = 0;
phgbartels 1:b08ac32d1ddc 228 state = ARM_KALIBRATIE;
phgbartels 5:4842219cb77c 229 EMG = 0;
phgbartels 0:2386012c6594 230 }
phgbartels 1:b08ac32d1ddc 231 break;
phgbartels 0:2386012c6594 232 /*bepalen hoe je zorgt dat je maar 1x de kalibraties uitvoerd! (Of eventueel de arm kalibratie elke keer!!)*/
phgbartels 0:2386012c6594 233 //if (metingstatus<5);
phgbartels 0:2386012c6594 234 // state = ARMKALIBRATIE;
phgbartels 0:2386012c6594 235 //if (metingstatus==5);
phgbartels 0:2386012c6594 236 // state = METEN_RICHTING;
phgbartels 0:2386012c6594 237 //break;
phgbartels 0:2386012c6594 238 //}
phgbartels 0:2386012c6594 239 }
phgbartels 0:2386012c6594 240
phgbartels 0:2386012c6594 241 case ARM_KALIBRATIE:
phgbartels 0:2386012c6594 242 {
phgbartels 0:2386012c6594 243 arm_kalibratie();
phgbartels 5:4842219cb77c 244 if (current_herhalingen == 100)
phgbartels 0:2386012c6594 245 {
phgbartels 0:2386012c6594 246 current_herhalingen = 0;
phgbartels 0:2386012c6594 247 previous_herhalingen = 0;
phgbartels 1:b08ac32d1ddc 248 state = EMG_KALIBRATIE;
phgbartels 2:de7b6c1d67c4 249 motor1.setPosition(0);
phgbartels 2:de7b6c1d67c4 250 motor2.setPosition(0);
phgbartels 2:de7b6c1d67c4 251 pwm_motor1.period_us(100);
phgbartels 2:de7b6c1d67c4 252 pwm_motor2.period_us(100);
phgbartels 0:2386012c6594 253 }
phgbartels 1:b08ac32d1ddc 254 break;
phgbartels 0:2386012c6594 255 }
phgbartels 0:2386012c6594 256
phgbartels 0:2386012c6594 257 case EMG_KALIBRATIE:
phgbartels 0:2386012c6594 258 {
phgbartels 0:2386012c6594 259 emg_kalibratie();
phgbartels 5:4842219cb77c 260 if (current_herhalingen == 100)
phgbartels 0:2386012c6594 261 {
phgbartels 0:2386012c6594 262 state = METEN_RICHTING;
phgbartels 0:2386012c6594 263 current_herhalingen = 0;
phgbartels 0:2386012c6594 264 previous_herhalingen = 0;
phgbartels 0:2386012c6594 265 }
phgbartels 1:b08ac32d1ddc 266 break;
phgbartels 0:2386012c6594 267 }
phgbartels 0:2386012c6594 268
phgbartels 0:2386012c6594 269 case METEN_RICHTING:
phgbartels 0:2386012c6594 270 {
phgbartels 0:2386012c6594 271 meten_richting();
phgbartels 5:4842219cb77c 272 if (current_herhalingen == 100)
phgbartels 0:2386012c6594 273 {
phgbartels 0:2386012c6594 274 state = METEN_HOOGTE;
phgbartels 0:2386012c6594 275 current_herhalingen = 0;
phgbartels 0:2386012c6594 276 previous_herhalingen = 0;
phgbartels 0:2386012c6594 277 }
phgbartels 1:b08ac32d1ddc 278 break;
phgbartels 0:2386012c6594 279 }
phgbartels 0:2386012c6594 280
phgbartels 0:2386012c6594 281 case METEN_HOOGTE:
phgbartels 0:2386012c6594 282 {
phgbartels 0:2386012c6594 283 meten_hoogte();
phgbartels 5:4842219cb77c 284 if (current_herhalingen == 100)
phgbartels 0:2386012c6594 285 {
phgbartels 0:2386012c6594 286 state = INSTELLEN_RICHTING;
phgbartels 0:2386012c6594 287 current_herhalingen = 0;
phgbartels 0:2386012c6594 288 previous_herhalingen = 0;
phgbartels 0:2386012c6594 289 }
phgbartels 1:b08ac32d1ddc 290 break;
phgbartels 0:2386012c6594 291 }
phgbartels 0:2386012c6594 292
phgbartels 0:2386012c6594 293 case INSTELLEN_RICHTING:
phgbartels 0:2386012c6594 294 {
phgbartels 0:2386012c6594 295 instellen_richting();
phgbartels 5:4842219cb77c 296 if (current_herhalingen == 100)
phgbartels 0:2386012c6594 297 {
phgbartels 7:f016dd2e8ea9 298 state = RETURN2RUST;
phgbartels 0:2386012c6594 299 current_herhalingen = 0;
phgbartels 0:2386012c6594 300 previous_herhalingen = 0;
phgbartels 0:2386012c6594 301 }
phgbartels 7:f016dd2e8ea9 302 break;
phgbartels 1:b08ac32d1ddc 303
phgbartels 0:2386012c6594 304 }
phgbartels 0:2386012c6594 305
phgbartels 0:2386012c6594 306 case SLAAN:
phgbartels 0:2386012c6594 307 {
phgbartels 7:f016dd2e8ea9 308 GotoPosition(1.5 ,8, 0.1);
phgbartels 5:4842219cb77c 309 if (current_herhalingen == 100)
phgbartels 0:2386012c6594 310 {
phgbartels 0:2386012c6594 311 state = RETURN2RUST;
phgbartels 0:2386012c6594 312 current_herhalingen = 0;
phgbartels 0:2386012c6594 313 previous_herhalingen = 0;
phgbartels 2:de7b6c1d67c4 314 prev_setpoint =0;
phgbartels 2:de7b6c1d67c4 315 setpoint =0;
phgbartels 2:de7b6c1d67c4 316
phgbartels 0:2386012c6594 317 }
phgbartels 2:de7b6c1d67c4 318 break;
phgbartels 0:2386012c6594 319 }
phgbartels 0:2386012c6594 320
phgbartels 0:2386012c6594 321 case RETURN2RUST:
phgbartels 0:2386012c6594 322 {
phgbartels 7:f016dd2e8ea9 323 GotoPosition(0,4, 0.05);
phgbartels 7:f016dd2e8ea9 324 //if (current_herhalingen == 100)
phgbartels 7:f016dd2e8ea9 325 //{
phgbartels 7:f016dd2e8ea9 326 // state = RUST;
phgbartels 7:f016dd2e8ea9 327 // current_herhalingen = 0;
phgbartels 7:f016dd2e8ea9 328 // previous_herhalingen = 0;
phgbartels 7:f016dd2e8ea9 329 //}
phgbartels 5:4842219cb77c 330
phgbartels 1:b08ac32d1ddc 331 break;
phgbartels 0:2386012c6594 332 }
phgbartels 0:2386012c6594 333
phgbartels 0:2386012c6594 334 default: {
phgbartels 0:2386012c6594 335 state = RUST;
phgbartels 0:2386012c6594 336 }
phgbartels 0:2386012c6594 337
phgbartels 0:2386012c6594 338 }//switch(state)
phgbartels 0:2386012c6594 339 }//void statemachinefunction
phgbartels 0:2386012c6594 340
phgbartels 0:2386012c6594 341
phgbartels 0:2386012c6594 342 void screenupdate(){
phgbartels 0:2386012c6594 343 if(state==RUST){
phgbartels 0:2386012c6594 344 lcd.cls();
phgbartels 0:2386012c6594 345 lcd.locate(0,0);
phgbartels 5:4842219cb77c 346 lcd.printf("V.I.C.T.O.R.Y."); //regel 1 LCD scherm
phgbartels 0:2386012c6594 347 lcd.locate(0,1);
phgbartels 0:2386012c6594 348 lcd.printf(" GROEP 7 ");
phgbartels 0:2386012c6594 349 }
phgbartels 0:2386012c6594 350 else{
phgbartels 0:2386012c6594 351 lcd.cls();
phgbartels 0:2386012c6594 352 lcd.printf("state %d", state); //hier nog aan toevoegen hoe je de 'waarde', dus eigenlijk tekst, die opgeslagen staat in state kan printen.
phgbartels 0:2386012c6594 353 }
phgbartels 0:2386012c6594 354 }
phgbartels 0:2386012c6594 355
phgbartels 0:2386012c6594 356 int main() {
phgbartels 4:377ddd65e4a6 357 pc.baud(115200);
phgbartels 4:377ddd65e4a6 358 statemachine.attach(&statemachinefunction, TSAMP); // the address of the function to be attached (flip) and the interval (2 seconds)
phgbartels 0:2386012c6594 359 screen.attach(&screenupdate, 0.2);
phgbartels 4:377ddd65e4a6 360 while(1);
phgbartels 0:2386012c6594 361 }