added code to ToF and inserted the e_button

Dependencies:   Version1-4

Dependents:   Version1-4 Version1-3

Committer:
t1jain
Date:
Tue Jul 02 16:41:38 2019 +0000
Revision:
17:770a161346ed
Parent:
14:67133c127740
Child:
18:94ae9ca5a709
Formatting updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ryanlin97 0:7e6b349182bc 1 #include "wheelchair.h"
ryanlin97 0:7e6b349182bc 2
t1jain 17:770a161346ed 3 QEI wheel (D10, D9, NC, 1200); // Initializes right encoder
t1jain 17:770a161346ed 4 DigitalIn pt3(D10, PullUp); // Pull up resistors to read analog signals into digital signals
jvfausto 9:ca11e4db63a7 5 DigitalIn pt4(D9, PullUp);
jvfausto 9:ca11e4db63a7 6
jvfausto 9:ca11e4db63a7 7 /*added*/
t1jain 17:770a161346ed 8 //DigitalIn e_button(D4); // Emergency button will start at HIGH
jvfausto 8:db780b392bae 9
t1jain 17:770a161346ed 10 QEI wheelS (D7, D8, NC, 1200); // Initializes Left encoder
t1jain 17:770a161346ed 11 DigitalIn pt1(D7, PullUp); // Pull up resistors to read analog signals into digital signals
jvfausto 9:ca11e4db63a7 12 DigitalIn pt2(D8, PullUp);
jvfausto 8:db780b392bae 13
jvfausto 9:ca11e4db63a7 14 int max_velocity;
jvfausto 9:ca11e4db63a7 15 //Timer testAccT;
jvfausto 9:ca11e4db63a7 16
t1jain 17:770a161346ed 17 AnalogIn x(A0); // Initializes analog axis for the joystick
ryanlin97 0:7e6b349182bc 18 AnalogIn y(A1);
ryanlin97 0:7e6b349182bc 19
t1jain 17:770a161346ed 20 //Watchdog limit should be 0.1; Set to 1 for Testing Only
t1jain 17:770a161346ed 21 double watchdogLimit = 1; // Set timeout limit for watchdog timer in seconds
jvfausto 11:73b4380d82bf 22 int buttonCheck = 0;
jvfausto 11:73b4380d82bf 23 int iteration = 1;
jvfausto 11:73b4380d82bf 24
t1jain 17:770a161346ed 25 DigitalOut up(D12); // Turn up speed mode for joystick
t1jain 17:770a161346ed 26 DigitalOut down(D13); // Turn down speed mode for joystick
t1jain 17:770a161346ed 27 DigitalOut on(D14); // Turn Wheelchair On
t1jain 17:770a161346ed 28 DigitalOut off(D15); // Turn Wheelchair Off
t1jain 17:770a161346ed 29 bool manual = false; // Turns chair joystic to automatic and viceverza
jvfausto 9:ca11e4db63a7 30
t1jain 17:770a161346ed 31 Serial pc(USBTX, USBRX, 57600); // Serial Monitor
ryanlin97 0:7e6b349182bc 32
t1jain 17:770a161346ed 33 VL53L1X sensor1(PD_13, PD_12, PC_7); // Initializes ToF sensors
jvfausto 11:73b4380d82bf 34 VL53L1X sensor2(PD_13, PD_12, PA_15);
jvfausto 10:b4d68db3ddbd 35 VL53L1X sensor3(PD_13, PD_12, PB_5);
jvfausto 11:73b4380d82bf 36 VL53L1X sensor4(PD_13, PD_12, PF_14);
jvfausto 11:73b4380d82bf 37 VL53L1X sensor5(PD_13, PD_12, PE_11);
jvfausto 10:b4d68db3ddbd 38 VL53L1X sensor6(PD_13, PD_12, PE_13);
jvfausto 10:b4d68db3ddbd 39 VL53L1X sensor7(PD_13, PD_12, D6);
jvfausto 10:b4d68db3ddbd 40 VL53L1X sensor8(PD_13, PD_12, PE_12);
jvfausto 10:b4d68db3ddbd 41 VL53L1X sensor9(PD_13, PD_12, PE_10);
jvfausto 10:b4d68db3ddbd 42 VL53L1X sensor10(PD_13, PD_12, PE_15);
jvfausto 10:b4d68db3ddbd 43 VL53L1X sensor11(PD_13, PD_12, D6);
jvfausto 9:ca11e4db63a7 44 VL53L1X sensor12(PB_11, PB_10, D11);
ryanlin97 5:90bf5f0d86e9 45
jvfausto 9:ca11e4db63a7 46 VL53L1X* ToF[12] = {&sensor1, &sensor2, &sensor3, &sensor4, &sensor5, &sensor6,
t1jain 17:770a161346ed 47 &sensor7, &sensor8, &sensor9, &sensor10, &sensor11, &sensor12}; // Puts ToF sensor pointers into an array
jvfausto 9:ca11e4db63a7 48 VL53L1X** ToFT = ToF;
ryanlin97 0:7e6b349182bc 49
t1jain 17:770a161346ed 50 Timer t; // Initialize time object t
t1jain 17:770a161346ed 51 EventQueue queue; // Class to organize threads
t1jain 17:770a161346ed 52 Wheelchair smart(xDir,yDir, &pc, &t, &wheel, &wheelS, ToFT); // Initialize wheelchair object
t1jain 17:770a161346ed 53 Thread compass; // Thread for compass
t1jain 17:770a161346ed 54 Thread velocity; // Thread for velosity
t1jain 17:770a161346ed 55 Thread ToFSafe; // Thread for safety stuff
ryanlin97 0:7e6b349182bc 56
ryanlin97 5:90bf5f0d86e9 57
ryanlin97 0:7e6b349182bc 58 int main(void)
jvfausto 9:ca11e4db63a7 59 {
jvfausto 9:ca11e4db63a7 60 /* nh.initNode();
jvfausto 9:ca11e4db63a7 61 nh.advertise(chatter);
jvfausto 9:ca11e4db63a7 62 nh.advertise(chatter2);
jvfausto 9:ca11e4db63a7 63 nh.subscribe(sub);*/
jvfausto 9:ca11e4db63a7 64 //testAccT.start();
t1jain 17:770a161346ed 65
jvfausto 9:ca11e4db63a7 66 pc.printf("before starting\r\n");
t1jain 17:770a161346ed 67 //queue.call_every(SAMPLEFREQ, &smart, &Wheelchair::compass_thread); // Sets up sampling frequency of the compass_thread
t1jain 17:770a161346ed 68 queue.call_every(SAMPLEFREQ, &smart, &Wheelchair::velocity_thread); // Sets up sampling frequency of the velosity_thread
t1jain 17:770a161346ed 69 queue.call_every(SAMPLEFREQ, &smart, &Wheelchair::ToFSafe_thread); // Sets up sampling frequency of the velosity_thread
t1jain 17:770a161346ed 70 //queue.call_every(200, rosCom_thread); // Sets up sampling frequency of the velosity_thread
ryanlin97 0:7e6b349182bc 71 t.reset();
t1jain 17:770a161346ed 72 //compass.start(callback(&queue, &EventQueue::dispatch_forever)); // Starts running the compass thread
t1jain 17:770a161346ed 73 velocity.start(callback(&queue, &EventQueue::dispatch_forever)); // Starts running the velosity thread
t1jain 17:770a161346ed 74 ToFSafe.start(callback(&queue, &EventQueue::dispatch_forever)); // Starts running the velosity thread
t1jain 17:770a161346ed 75 //ros_com.start(callback(&queue, &EventQueue::dispatch_forever)); // Starts running the velosity thread
jvfausto 9:ca11e4db63a7 76 pc.printf("After starting\r\n");
jvfausto 9:ca11e4db63a7 77
jvfausto 9:ca11e4db63a7 78 //added
jvfausto 9:ca11e4db63a7 79 // int emerg_button = e_button;
jvfausto 13:7fe71170d157 80 Watchdog dog; // Creates Watchdog object
jvfausto 13:7fe71170d157 81 dog.Configure(watchdogLimit); // Configures timeout for Watchdog
jvfausto 13:7fe71170d157 82 pc.printf("Code initiated\n");
jvfausto 9:ca11e4db63a7 83 int set = 0;
ryanlin97 0:7e6b349182bc 84 while(1) {
ryanlin97 0:7e6b349182bc 85 if( pc.readable()) {
jvfausto 9:ca11e4db63a7 86 set = 1;
t1jain 17:770a161346ed 87 char c = pc.getc(); // Read the instruction sent
ryanlin97 0:7e6b349182bc 88 if( c == 'w') {
t1jain 17:770a161346ed 89 smart.forward(); // Move foward
jvfausto 9:ca11e4db63a7 90
ryanlin97 0:7e6b349182bc 91 }
ryanlin97 0:7e6b349182bc 92 else if( c == 'a') {
t1jain 17:770a161346ed 93 smart.left(); // Turn left
ryanlin97 0:7e6b349182bc 94 }
jvfausto 9:ca11e4db63a7 95 else if( c == 'd') {
t1jain 17:770a161346ed 96 smart.right(); // Turn right
ryanlin97 0:7e6b349182bc 97 }
jvfausto 9:ca11e4db63a7 98 else if( c == 's') {
t1jain 17:770a161346ed 99 smart.backward(); // Turn backwards
jvfausto 9:ca11e4db63a7 100 }
jvfausto 9:ca11e4db63a7 101
jvfausto 9:ca11e4db63a7 102 else if( c == 't') {
jvfausto 9:ca11e4db63a7 103 smart.pid_twistA();
jvfausto 9:ca11e4db63a7 104 } else if(c == 'v'){
jvfausto 9:ca11e4db63a7 105 smart.showOdom();
t1jain 17:770a161346ed 106 } else if(c == 'o') { // Turns on chair
jvfausto 7:04f93e6b929f 107 pc.printf("turning on\r\n");
ryanlin97 6:e9b1684a9c00 108 on = 1;
ryanlin97 6:e9b1684a9c00 109 wait(1);
ryanlin97 6:e9b1684a9c00 110 on = 0;
t1jain 17:770a161346ed 111 } else if(c == 'f') { // Turns off chair
jvfausto 7:04f93e6b929f 112 pc.printf("turning off\r\n");
ryanlin97 6:e9b1684a9c00 113 off = 1;
ryanlin97 6:e9b1684a9c00 114 wait(1);
ryanlin97 6:e9b1684a9c00 115 off = 0;
jvfausto 9:ca11e4db63a7 116
t1jain 17:770a161346ed 117 } else if(c == 'k'){ // Sends command to go to the kitchen
jvfausto 9:ca11e4db63a7 118 smart.pid_twistV();
t1jain 17:770a161346ed 119 } else if( c == 'm' || manual) { // Turns wheelchair to joystick
jvfausto 7:04f93e6b929f 120 pc.printf("turning on joystick\r\n");
ryanlin97 0:7e6b349182bc 121 manual = true;
ryanlin97 0:7e6b349182bc 122 t.reset();
ryanlin97 0:7e6b349182bc 123 while(manual) {
t1jain 17:770a161346ed 124 smart.move(x,y); // Reads from joystick and moves
ryanlin97 0:7e6b349182bc 125 if( pc.readable()) {
ryanlin97 0:7e6b349182bc 126 char d = pc.getc();
t1jain 17:770a161346ed 127 if( d == 'm') { // Turns wheelchair from joystick into auto
jvfausto 7:04f93e6b929f 128 pc.printf("turning off joystick\r\n");
ryanlin97 0:7e6b349182bc 129 manual = false;
ryanlin97 0:7e6b349182bc 130 }
ryanlin97 0:7e6b349182bc 131 }
jvfausto 7:04f93e6b929f 132 }
ryanlin97 0:7e6b349182bc 133 }
jvfausto 9:ca11e4db63a7 134 else {
jvfausto 9:ca11e4db63a7 135 pc.printf("none \r\n");
t1jain 17:770a161346ed 136 smart.stop(); // If nothing else is happening stop the chair
ryanlin97 0:7e6b349182bc 137 }
ryanlin97 0:7e6b349182bc 138 }
jvfausto 9:ca11e4db63a7 139 else {
jvfausto 9:ca11e4db63a7 140
t1jain 17:770a161346ed 141 smart.stop(); // If nothing else is happening stop the chair
jvfausto 9:ca11e4db63a7 142 }
jvfausto 11:73b4380d82bf 143
ryanlin97 0:7e6b349182bc 144 wait(process);
jvfausto 11:73b4380d82bf 145
jvfausto 13:7fe71170d157 146 t.stop();
t1jain 14:67133c127740 147 //pc.printf("Time elapsed: %f seconds and iteration = %d\n", t.read(), iteration);
t1jain 17:770a161346ed 148 dog.Service(); // Service the Watchdog so it does not cause a system reset - "Kicking"/"Feeding" the dog
jvfausto 13:7fe71170d157 149
ryanlin97 0:7e6b349182bc 150 }
ryanlin97 0:7e6b349182bc 151 }
ryanlin97 0:7e6b349182bc 152