02/07/15

Dependencies:   mbed

Dependents:   TabbedGUIMbed

Committer:
aidanPJG
Date:
Thu Aug 06 14:45:23 2015 +0000
Revision:
67:04d67617131a
Parent:
66:b642dac6f65d
Child:
68:c6399471ea49
compatible with GUI

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ADAMSTRUTT 17:d9fb4a3780c7 1 #include "mbed.h"
ADAMSTRUTT 17:d9fb4a3780c7 2 #include "Calculate.h"
ADAMSTRUTT 17:d9fb4a3780c7 3 #include "Distance.h"
ADAMSTRUTT 35:085a674c9fdf 4 #include "Data.h"
aidanPJG 48:e9578f56534a 5 #include "UserInput.h"
aidanPJG 56:bf08d9e50ccc 6 #include "AddDetails.h"
ADAMSTRUTT 35:085a674c9fdf 7
aidanPJG 25:bab86a12e9ad 8 Serial pc(USBTX, USBRX); // tx, rx
aidanPJG 59:2cbbd6fea55b 9 DigitalOut led1(LED1);
aidanPJG 59:2cbbd6fea55b 10 DigitalOut led2(LED2);
aidanPJG 65:08b3eb9b95dd 11 string handshake();
aidanPJG 59:2cbbd6fea55b 12 void run();
ADAMSTRUTT 17:d9fb4a3780c7 13
ADAMSTRUTT 20:0b2279011691 14 int main(void)
aidanPJG 7:d6f78ba7c5f7 15 {
aidanPJG 59:2cbbd6fea55b 16 initialise(3); //used to create the Datalog file should happen once for every bend test
aidanPJG 65:08b3eb9b95dd 17 if (handshake() == "success")
aidanPJG 65:08b3eb9b95dd 18 {
aidanPJG 65:08b3eb9b95dd 19 run();
aidanPJG 65:08b3eb9b95dd 20 }
aidanPJG 65:08b3eb9b95dd 21 led2= 1;
aidanPJG 59:2cbbd6fea55b 22 }
aidanPJG 65:08b3eb9b95dd 23 string handshake()
aidanPJG 59:2cbbd6fea55b 24 {
aidanPJG 59:2cbbd6fea55b 25 unsigned char input;
aidanPJG 59:2cbbd6fea55b 26 pc.printf("a\n");
aidanPJG 59:2cbbd6fea55b 27
aidanPJG 59:2cbbd6fea55b 28 while(true)
aidanPJG 59:2cbbd6fea55b 29 {
aidanPJG 59:2cbbd6fea55b 30 input = pc.getc();
aidanPJG 59:2cbbd6fea55b 31 if (input == 'a')
aidanPJG 59:2cbbd6fea55b 32 {
aidanPJG 66:b642dac6f65d 33 led1 = 1;
aidanPJG 65:08b3eb9b95dd 34 return "success" ;// run();
aidanPJG 59:2cbbd6fea55b 35 }
aidanPJG 59:2cbbd6fea55b 36 }
aidanPJG 59:2cbbd6fea55b 37 }
aidanPJG 59:2cbbd6fea55b 38 void run()
aidanPJG 59:2cbbd6fea55b 39 {
aidanPJG 55:58e9836f5ad1 40 int pins = inputNoOfPins(); //gets number of pins
aidanPJG 55:58e9836f5ad1 41 double distance = inputDistance(); //gets the distance between the pins
aidanPJG 59:2cbbd6fea55b 42 calculate(distance,pins);
aidanPJG 59:2cbbd6fea55b 43 }