Prototyp V2
Dependencies: PM2_Libary
main.cpp@43:7964411b4a6b, 2022-04-18 (annotated)
- Committer:
- raomen
- Date:
- Mon Apr 18 12:51:13 2022 +0200
- Branch:
- michi
- Revision:
- 43:7964411b4a6b
- Parent:
- 42:6e7ab1136354
- Child:
- 44:c2d4bc4be5f2
implement wheel_dist_to_deg
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
pmic | 1:93d997d6b232 | 1 | #include "mbed.h" |
pmic | 17:c19b471f05cb | 2 | #include "PM2_Libary.h" |
raomen | 41:4a4978d1a578 | 3 | #include <cmath> |
lupomic | 33:70ea029a69e8 | 4 | #include <cstdint> |
raomen | 41:4a4978d1a578 | 5 | #include <cstdio> |
raomen | 39:025d1bee1397 | 6 | #include "math.h" |
raomen | 39:025d1bee1397 | 7 | //******************************************************************************************************************************************************************* |
raomen | 39:025d1bee1397 | 8 | // Defined Variables in mm coming from Hardware-team. Need to be updated |
raomen | 41:4a4978d1a578 | 9 | float wheel_diameter = 30; // diameter of wheel with caterpillar to calculate mm per wheel turn (4) |
raomen | 41:4a4978d1a578 | 10 | float arm_length = 118.5; // lenght of arm from pivotpoint to pivotpoint (3) |
raomen | 41:4a4978d1a578 | 11 | float dist_arm_attach_distsensor = 20; // distance between pivot point arm on body to start distancesensor on top in horizontal (6) |
raomen | 41:4a4978d1a578 | 12 | float dist_distsensors = 200; // distance between the two distancesensors on top of Wall-E (9) |
raomen | 41:4a4978d1a578 | 13 | float dist_arm_ground = 51; // distance between pivotpoint arm and ground (5) |
raomen | 41:4a4978d1a578 | 14 | float gripper_area_height = 16 ; // Height of Grappler cutout to grapple Stair (8) |
raomen | 41:4a4978d1a578 | 15 | float dist_grappleratt_grappler_uk = 33; // distance between pivotpoint Grappler and bottom edge (?) |
raomen | 41:4a4978d1a578 | 16 | |
raomen | 39:025d1bee1397 | 17 | float height_stairs = 100; // height to top of stairs in mm |
raomen | 39:025d1bee1397 | 18 | //*********************************************************************************************************************************************************** |
raomen | 41:4a4978d1a578 | 19 | // declaration of Input - Output pins |
pmic | 17:c19b471f05cb | 20 | |
pmic | 24:86f1a63e35a0 | 21 | // user button on nucleo board |
pmic | 24:86f1a63e35a0 | 22 | Timer user_button_timer; // create Timer object which we use to check if user button was pressed for a certain time (robust against signal bouncing) |
pmic | 24:86f1a63e35a0 | 23 | InterruptIn user_button(PC_13); // create InterruptIn interface object to evaluate user button falling and rising edge (no blocking code in ISR) |
pmic | 24:86f1a63e35a0 | 24 | void user_button_pressed_fcn(); // custom functions which gets executed when user button gets pressed and released, definition below |
pmic | 24:86f1a63e35a0 | 25 | void user_button_released_fcn(); |
pmic | 6:e1fa1a2d7483 | 26 | |
pmic | 24:86f1a63e35a0 | 27 | // Sharp GP2Y0A41SK0F, 4-40 cm IR Sensor |
raomen | 38:c2663f7dcccb | 28 | float ir_distance_mV = 0.0f; // define variable to store measurement from infrared distancesensor in mVolt |
pmic | 24:86f1a63e35a0 | 29 | AnalogIn ir_analog_in(PC_2); // create AnalogIn object to read in infrared distance sensor, 0...3.3V are mapped to 0...1 |
pmic | 6:e1fa1a2d7483 | 30 | |
pmic | 24:86f1a63e35a0 | 31 | // 78:1, 100:1, ... Metal Gearmotor 20Dx44L mm 12V CB |
pmic | 24:86f1a63e35a0 | 32 | DigitalOut enable_motors(PB_15); // create DigitalOut object to enable dc motors |
pmic | 24:86f1a63e35a0 | 33 | float pwm_period_s = 0.00005f; // define pwm period time in seconds and create FastPWM objects to command dc motors |
lupomic | 33:70ea029a69e8 | 34 | //motor pin declaration |
lupomic | 34:9f779e91168e | 35 | FastPWM pwm_M_right(PB_13); |
lupomic | 34:9f779e91168e | 36 | FastPWM pwm_M_left(PA_9); |
lupomic | 33:70ea029a69e8 | 37 | FastPWM pwm_M_arm(PA_10); |
pmic | 17:c19b471f05cb | 38 | |
lupomic | 33:70ea029a69e8 | 39 | //Encoder pin declaration |
lupomic | 33:70ea029a69e8 | 40 | EncoderCounter encoder_M_right(PA_6, PC_7); //encoder pin decalaration for wheels right side |
lupomic | 33:70ea029a69e8 | 41 | EncoderCounter encoder_M_left(PB_6, PB_7); //encoder pin decalaration for wheels left side |
lupomic | 33:70ea029a69e8 | 42 | EncoderCounter encoder_M_arm(PA_0, PA_1); //encoder pin decalaration for arm |
raomen | 41:4a4978d1a578 | 43 | //*********************************************************************************************************************************************************** |
raomen | 43:7964411b4a6b | 44 | // Hardware controll Setup and functions (motors and sensors) |
pmic | 17:c19b471f05cb | 45 | |
pmic | 30:1e8295770bc1 | 46 | // create SpeedController and PositionController objects, default parametrization is for 78.125:1 gear box |
pmic | 24:86f1a63e35a0 | 47 | float max_voltage = 12.0f; // define maximum voltage of battery packs, adjust this to 6.0f V if you only use one batterypack |
raomen | 39:025d1bee1397 | 48 | float counts_per_turn_wheels = 20.0f * 78.125f; // define counts per turn at gearbox end (counts/turn * gearratio) for wheels |
raomen | 39:025d1bee1397 | 49 | float counts_per_turn_arm = 20.0f * 78.125f * 10.0f; // define counts per turn at gearbox end (counts/turn * gearratio) for arm |
pmic | 25:ea1d6e27c895 | 50 | float kn = 180.0f / 12.0f; // define motor constant in rpm per V |
raomen | 39:025d1bee1397 | 51 | float k_gear = 100.0f / 78.125f; // define additional ratio in case you are using a dc motor with a different gear box, e.g. 100:1 (DC with 100:1 has 2'000 turns for 360°) |
pmic | 30:1e8295770bc1 | 52 | float kp = 0.1f; // define custom kp, this is the default speed controller gain for gear box 78.125:1 |
pmic | 6:e1fa1a2d7483 | 53 | |
lupomic | 33:70ea029a69e8 | 54 | //motors for tracks |
lupomic | 33:70ea029a69e8 | 55 | PositionController positionController_M_right(counts_per_turn_wheels * k_gear, kn / k_gear, kp * k_gear, max_voltage, pwm_M_right, encoder_M_right); // parameters adjusted to 100:1 gear, we need a different speed controller gain here |
lupomic | 33:70ea029a69e8 | 56 | PositionController positionController_M_left(counts_per_turn_wheels * k_gear, kn / k_gear, kp * k_gear, max_voltage, pwm_M_left, encoder_M_left); // parameters adjusted to 100:1 gear, we need a different speed controller gain here |
lupomic | 33:70ea029a69e8 | 57 | //Arm Motor |
lupomic | 33:70ea029a69e8 | 58 | PositionController positionController_M_Arm(counts_per_turn_arm * k_gear, kn / k_gear, kp * k_gear, max_voltage, pwm_M_arm, encoder_M_arm); // parameters adjusted to 100:1 gear, we need a different speed controller gain here |
pmic | 17:c19b471f05cb | 59 | |
lupomic | 33:70ea029a69e8 | 60 | // PositionController positionController_M3(counts_per_turn, kn, max_voltage, pwm_M3, encoder_M3); // default 78.125:1 gear with default contoller parameters |
lupomic | 33:70ea029a69e8 | 61 | //PositionController positionController_M3(counts_per_turn * k_gear, kn / k_gear, kp * k_gear, max_voltage, pwm_M3, encoder_M3); // parameters adjusted to 100:1 gear, we need a different speed controller gain here |
raomen | 41:4a4978d1a578 | 62 | //*********************************************************************************************************************************************************** |
raomen | 43:7964411b4a6b | 63 | // logic functions for basic movement |
raomen | 41:4a4978d1a578 | 64 | |
lupomic | 33:70ea029a69e8 | 65 | //Platzhalter Variabeln für die Positionierung |
lupomic | 34:9f779e91168e | 66 | float PositionStair = 0.2; |
lupomic | 34:9f779e91168e | 67 | float PositionBackOff = -0.5; |
raomen | 41:4a4978d1a578 | 68 | float degArmStart = 0.0; |
lupomic | 34:9f779e91168e | 69 | float degArmLift = -0.5; |
raomen | 41:4a4978d1a578 | 70 | int ToNextFunction = 0; // current state of the system (which function is beeing executed) |
raomen | 41:4a4978d1a578 | 71 | float max_speed_rps = 0.5f; // define maximum speed that the position controller is changig the speed, has to be smaller or equal to kn * max_voltage |
lupomic | 33:70ea029a69e8 | 72 | |
raomen | 42:6e7ab1136354 | 73 | // calculates the deg which the arm has to take to reach a certain height (the input height will be the height of OK Gripper area) |
raomen | 42:6e7ab1136354 | 74 | double calc_arm_deg_for_height(int height_mm) |
raomen | 40:e32c57763d92 | 75 | { |
raomen | 42:6e7ab1136354 | 76 | if ((height_mm - dist_arm_ground - (dist_grappleratt_grappler_uk - gripper_area_height)) > arm_length) |
raomen | 41:4a4978d1a578 | 77 | { |
raomen | 43:7964411b4a6b | 78 | printf("Error in calc_arm_deg_for_height: desired height is bigger than Wall-E arm lenght."); // error message when desired height is not reachable. |
raomen | 41:4a4978d1a578 | 79 | } |
raomen | 42:6e7ab1136354 | 80 | double height_arm = height_mm - dist_arm_ground - (dist_grappleratt_grappler_uk - gripper_area_height); |
raomen | 42:6e7ab1136354 | 81 | double deg_arm_rad = asin(height_mm / arm_length); // deg in radians |
raomen | 41:4a4978d1a578 | 82 | double pi = 2 * acos(0.0); // definiton of pi |
raomen | 43:7964411b4a6b | 83 | double deg_arm = deg_arm_rad * 180.0/pi; // deg in degrees |
raomen | 41:4a4978d1a578 | 84 | return deg_arm; |
raomen | 40:e32c57763d92 | 85 | } |
raomen | 38:c2663f7dcccb | 86 | |
raomen | 43:7964411b4a6b | 87 | // bring arme in starting position height of stairs. |
raomen | 42:6e7ab1136354 | 88 | int start_position() |
raomen | 42:6e7ab1136354 | 89 | { |
raomen | 43:7964411b4a6b | 90 | float deg = calc_arm_deg_for_height(height_stairs); //deg which arm motor has to turn to in order to grab stair |
raomen | 43:7964411b4a6b | 91 | if ((0.0 > deg) || (deg > 360.0)) |
raomen | 42:6e7ab1136354 | 92 | { |
raomen | 43:7964411b4a6b | 93 | printf("Error in start_position: degree is out of bound for Start Position."); // error when desired reaching point is out of reach. |
raomen | 42:6e7ab1136354 | 94 | } |
raomen | 43:7964411b4a6b | 95 | positionController_M_Arm.setDesiredRotation(deg); // command to turn motor to desired deg. |
raomen | 42:6e7ab1136354 | 96 | return NULL; |
raomen | 42:6e7ab1136354 | 97 | } |
raomen | 42:6e7ab1136354 | 98 | |
raomen | 43:7964411b4a6b | 99 | //calculates the deg which the wheels have to turn in order to cover specified distnace in mm |
raomen | 43:7964411b4a6b | 100 | int wheel_dist_to_deg(int distance) // distance has to be in mm. |
raomen | 43:7964411b4a6b | 101 | { |
raomen | 43:7964411b4a6b | 102 | double pi = 2 * acos(0.0); // definiton of pi |
raomen | 43:7964411b4a6b | 103 | int deg_wheel = distance * 360 /(wheel_diameter * pi); |
raomen | 43:7964411b4a6b | 104 | return deg_wheel; |
raomen | 43:7964411b4a6b | 105 | } |
raomen | 43:7964411b4a6b | 106 | |
lupomic | 33:70ea029a69e8 | 107 | //Drives forward into the next step |
raomen | 39:025d1bee1397 | 108 | // calculatioin of acctual distance with wheels is needed |
raomen | 43:7964411b4a6b | 109 | int drive_straight(float distance) |
raomen | 40:e32c57763d92 | 110 | { |
raomen | 38:c2663f7dcccb | 111 | positionController_M_right.setDesiredRotation(distance,max_speed_rps); |
raomen | 38:c2663f7dcccb | 112 | positionController_M_left.setDesiredRotation(distance,max_speed_rps); |
raomen | 38:c2663f7dcccb | 113 | return 0; |
lupomic | 33:70ea029a69e8 | 114 | } |
lupomic | 33:70ea029a69e8 | 115 | |
lupomic | 33:70ea029a69e8 | 116 | //only turns the arm until the robot is on the next step |
lupomic | 33:70ea029a69e8 | 117 | //not yet clear if the motor controler function drives to a absolute poition or if it drives the given distance relative to the current position |
raomen | 42:6e7ab1136354 | 118 | int lift_up(float deg) |
raomen | 40:e32c57763d92 | 119 | { |
lupomic | 33:70ea029a69e8 | 120 | int8_t i = 0; //prov condition variable |
raomen | 38:c2663f7dcccb | 121 | positionController_M_Arm.setDesiredRotation(deg); |
lupomic | 33:70ea029a69e8 | 122 | return 0; |
lupomic | 33:70ea029a69e8 | 123 | } |
raomen | 43:7964411b4a6b | 124 | //*********************************************************************************************************************************************************** |
raomen | 38:c2663f7dcccb | 125 | |
raomen | 43:7964411b4a6b | 126 | //Function which checks if sensors and motors have been wired correctly and the expectet results will happen. otherwise Wall-E will show with armmovement. |
raomen | 43:7964411b4a6b | 127 | int check_start() |
raomen | 43:7964411b4a6b | 128 | { |
raomen | 43:7964411b4a6b | 129 | |
raomen | 43:7964411b4a6b | 130 | return 0; |
raomen | 43:7964411b4a6b | 131 | } |
raomen | 43:7964411b4a6b | 132 | |
raomen | 43:7964411b4a6b | 133 | //pow function is here so we dont have to use the math.h library ************* unnecessary math.h is used any way *************** |
lupomic | 33:70ea029a69e8 | 134 | //it takes 2 arguments the base can be any negative or positive floating point number the power has to be a hos to be an "integer" defined as a double |
raomen | 40:e32c57763d92 | 135 | double powerx(double base, double pow2) |
raomen | 40:e32c57763d92 | 136 | { |
lupomic | 33:70ea029a69e8 | 137 | double result = -1; |
lupomic | 33:70ea029a69e8 | 138 | double power = pow2; |
lupomic | 33:70ea029a69e8 | 139 | double basis = base; |
lupomic | 33:70ea029a69e8 | 140 | result = 1; |
lupomic | 33:70ea029a69e8 | 141 | //handling negative exponents |
raomen | 40:e32c57763d92 | 142 | if(power<0) |
raomen | 40:e32c57763d92 | 143 | { |
raomen | 40:e32c57763d92 | 144 | for(double i=1; i<=(power*(-1.0)); i++) |
raomen | 40:e32c57763d92 | 145 | { |
lupomic | 33:70ea029a69e8 | 146 | result *= basis; |
lupomic | 33:70ea029a69e8 | 147 | } |
lupomic | 33:70ea029a69e8 | 148 | result = 1.0/result; |
lupomic | 33:70ea029a69e8 | 149 | } |
lupomic | 33:70ea029a69e8 | 150 | //handling positive exponents |
raomen | 40:e32c57763d92 | 151 | else |
raomen | 40:e32c57763d92 | 152 | { |
raomen | 40:e32c57763d92 | 153 | for(double i=1; i<=power; i++) |
raomen | 40:e32c57763d92 | 154 | { |
raomen | 40:e32c57763d92 | 155 | result *= basis; |
raomen | 40:e32c57763d92 | 156 | } |
raomen | 40:e32c57763d92 | 157 | } |
lupomic | 33:70ea029a69e8 | 158 | return result; |
raomen | 40:e32c57763d92 | 159 | } |
lupomic | 33:70ea029a69e8 | 160 | |
raomen | 40:e32c57763d92 | 161 | double mapping(float adc_value_mV) |
raomen | 40:e32c57763d92 | 162 | { |
lupomic | 33:70ea029a69e8 | 163 | double distance = 0.0f; //distance in mm |
lupomic | 33:70ea029a69e8 | 164 | double infY =360 , supY = 2360; //Window for sensor values |
lupomic | 33:70ea029a69e8 | 165 | double voltage_mV = adc_value_mV; |
lupomic | 33:70ea029a69e8 | 166 | double p1 = -1.127*powerx(10,-14), p2 = 8.881*powerx(10,-11), p3 = -2.76*powerx(10,-7), p4 = 0.0004262, p5 = -0.3363, p6 = 120.1 ; //faktoren für polynomkurve -> von matlab exportiert |
raomen | 40:e32c57763d92 | 167 | if(voltage_mV > infY && voltage_mV < supY) |
raomen | 40:e32c57763d92 | 168 | { |
lupomic | 33:70ea029a69e8 | 169 | distance = p1*powerx(voltage_mV,5) + p2*powerx(voltage_mV,4) + p3*powerx(voltage_mV,3) + p4*powerx(voltage_mV,2) + p5*voltage_mV + p6; |
lupomic | 33:70ea029a69e8 | 170 | } |
lupomic | 33:70ea029a69e8 | 171 | return (distance); |
lupomic | 33:70ea029a69e8 | 172 | } |
lupomic | 33:70ea029a69e8 | 173 | |
raomen | 41:4a4978d1a578 | 174 | // logical variable main task |
raomen | 41:4a4978d1a578 | 175 | bool do_execute_main_task = false; // this variable will be toggled via the user button (blue button) to or not to execute the main task |
raomen | 41:4a4978d1a578 | 176 | |
raomen | 41:4a4978d1a578 | 177 | // while loop gets executed every main_task_period_ms milliseconds |
raomen | 41:4a4978d1a578 | 178 | int main_task_period_ms = 30; // define main task period time in ms e.g. 30 ms -> main task runns ~33,33 times per second |
raomen | 41:4a4978d1a578 | 179 | Timer main_task_timer; // create Timer object which we use to run the main task every main task period time in ms |
raomen | 43:7964411b4a6b | 180 | //*********************************************************************************************************************************************************** |
raomen | 39:025d1bee1397 | 181 | |
lupomic | 33:70ea029a69e8 | 182 | int main(void) |
pmic | 23:26b3a25fc637 | 183 | { |
raomen | 43:7964411b4a6b | 184 | // attach button fall and rise functions to user button object |
lupomic | 33:70ea029a69e8 | 185 | user_button.fall(&user_button_pressed_fcn); |
lupomic | 34:9f779e91168e | 186 | user_button.rise(&user_button_released_fcn); |
lupomic | 33:70ea029a69e8 | 187 | |
raomen | 40:e32c57763d92 | 188 | while (true) |
raomen | 40:e32c57763d92 | 189 | { |
lupomic | 34:9f779e91168e | 190 | enable_motors = 1; |
lupomic | 33:70ea029a69e8 | 191 | ir_distance_mV = 1.0e3f * ir_analog_in.read() * 3.3f; |
lupomic | 33:70ea029a69e8 | 192 | |
raomen | 40:e32c57763d92 | 193 | switch (ToNextFunction) |
raomen | 40:e32c57763d92 | 194 | { |
raomen | 42:6e7ab1136354 | 195 | case 1: start_position(); |
lupomic | 34:9f779e91168e | 196 | printf("Case 1: Position ARM (rot): %3.3f\n",positionController_M_Arm.getRotation()); |
lupomic | 33:70ea029a69e8 | 197 | // ToNextFunction+=1; |
lupomic | 33:70ea029a69e8 | 198 | break; |
raomen | 43:7964411b4a6b | 199 | case 2: drive_straight(PositionStair); |
lupomic | 34:9f779e91168e | 200 | printf("Case 2: Position Right(rot): %3.3f; Position Left (rot): %3.3f\n", |
lupomic | 34:9f779e91168e | 201 | positionController_M_right.getRotation(),positionController_M_left.getRotation()); |
lupomic | 33:70ea029a69e8 | 202 | // ToNextFunction+=1; |
lupomic | 33:70ea029a69e8 | 203 | break; |
raomen | 42:6e7ab1136354 | 204 | case 3: lift_up(degArmLift); |
lupomic | 33:70ea029a69e8 | 205 | // ToNextFunction+=1; |
lupomic | 34:9f779e91168e | 206 | printf("Case 3: Position ARM (rot): %3.3f\n",positionController_M_Arm.getRotation()); |
lupomic | 33:70ea029a69e8 | 207 | break; |
raomen | 43:7964411b4a6b | 208 | case 4: drive_straight(PositionBackOff); |
lupomic | 34:9f779e91168e | 209 | printf("Case 4: Position Right(rot): %3.3f; Position Left (rot): %3.3f\n", |
lupomic | 34:9f779e91168e | 210 | positionController_M_right.getRotation(),positionController_M_left.getRotation()); |
lupomic | 33:70ea029a69e8 | 211 | // ToNextFunction+=1; |
lupomic | 33:70ea029a69e8 | 212 | break; |
raomen | 42:6e7ab1136354 | 213 | case 5: lift_up(degArmStart); |
lupomic | 34:9f779e91168e | 214 | printf("Case 5: Position ARM (rot): %3.3f\n",positionController_M_Arm.getRotation()); |
lupomic | 33:70ea029a69e8 | 215 | // ToNextFunction = 0; |
lupomic | 33:70ea029a69e8 | 216 | break; |
lupomic | 34:9f779e91168e | 217 | default: ; |
lupomic | 33:70ea029a69e8 | 218 | } |
lupomic | 33:70ea029a69e8 | 219 | } |
lupomic | 33:70ea029a69e8 | 220 | // read timer and make the main thread sleep for the remaining time span (non blocking) |
pmic | 24:86f1a63e35a0 | 221 | int main_task_elapsed_time_ms = std::chrono::duration_cast<std::chrono::milliseconds>(main_task_timer.elapsed_time()).count(); |
pmic | 24:86f1a63e35a0 | 222 | thread_sleep_for(main_task_period_ms - main_task_elapsed_time_ms); |
lupomic | 33:70ea029a69e8 | 223 | return 0; |
pmic | 1:93d997d6b232 | 224 | } |
pmic | 6:e1fa1a2d7483 | 225 | |
lupomic | 33:70ea029a69e8 | 226 | |
pmic | 24:86f1a63e35a0 | 227 | void user_button_pressed_fcn() |
pmic | 25:ea1d6e27c895 | 228 | { |
pmic | 26:28693b369945 | 229 | user_button_timer.start(); |
pmic | 6:e1fa1a2d7483 | 230 | user_button_timer.reset(); |
pmic | 6:e1fa1a2d7483 | 231 | } |
pmic | 6:e1fa1a2d7483 | 232 | |
raomen | 43:7964411b4a6b | 233 | void user_button_released_fcn() |
raomen | 43:7964411b4a6b | 234 | { |
pmic | 24:86f1a63e35a0 | 235 | // read timer and toggle do_execute_main_task if the button was pressed longer than the below specified time |
pmic | 24:86f1a63e35a0 | 236 | int user_button_elapsed_time_ms = std::chrono::duration_cast<std::chrono::milliseconds>(user_button_timer.elapsed_time()).count(); |
pmic | 6:e1fa1a2d7483 | 237 | user_button_timer.stop(); |
raomen | 43:7964411b4a6b | 238 | if (user_button_elapsed_time_ms > 200) |
raomen | 43:7964411b4a6b | 239 | { |
raomen | 43:7964411b4a6b | 240 | ToNextFunction += 1; |
raomen | 43:7964411b4a6b | 241 | } |
raomen | 43:7964411b4a6b | 242 | } |