ELEC2645 (2019/20) / Mbed 2 deprecated ELEC2645_Project_el18jgb

Dependencies:   mbed

Revision:
21:a0f3651f56c4
Parent:
13:cfdfe60a2327
Child:
22:7406068f6c59
--- a/Aim/Aim_test.h	Fri May 22 14:06:35 2020 +0000
+++ b/Aim/Aim_test.h	Sat May 23 13:59:51 2020 +0000
@@ -18,14 +18,14 @@
 
     // Read the position
     Vector2D read_pos_1 = aim.get_pos();
-    printf("%f, %f\n", read_pos_1.x, read_pos_1.y);
+    printf("%f, %f\n", read_pos_1.x, read_pos_1.y);//aim pos has +2
 
     
     // Now check that both the position is as expected
     bool success_flag = true;
     
     // Fail the test if the initial position is wrong
-    if (read_pos_1.x != 42 || read_pos_1.y != 5) {
+    if (read_pos_1.x != 44 || read_pos_1.y != 7) {
         success_flag = false;
     }