diff options
Diffstat (limited to 'robot/mode_grid.c')
-rw-r--r-- | robot/mode_grid.c | 33 |
1 files changed, 6 insertions, 27 deletions
diff --git a/robot/mode_grid.c b/robot/mode_grid.c index d493a1a..4364b67 100644 --- a/robot/mode_grid.c +++ b/robot/mode_grid.c @@ -7,29 +7,17 @@ int g_w2_order_number; int g_w2_maze_status = 0; - -//product coordinates -w2_s_grid_coordinate g_w2_order[4] = { +w2_s_grid_coordinate g_w2_order[16] = { {0, 0}, - {1, 1}, - {2, 2}, - {3, 3}, + {3, 4}, + {2, 1}, + {4, 2}, }; +unsigned int g_w2_order_index = 4; w2_s_grid_coordinate g_w2_location; w2_s_grid_coordinate g_w2_destination; w2_e_orientation g_w2_direction; - -//give coordinates for grid -void w2_location_message() { - clear(); - print_long(g_w2_location.x); - print(","); - print_long(g_w2_location.y); - delay(200); -} - - int g_w2_detection = 0; int g_w2_transition; //used for the crosswalk, used to count black lines char g_w2_x_location = 0; //current location in grid @@ -45,8 +33,6 @@ void w2_crosswalk_stroll() { g_w2_position = read_line(g_w2_sensors, IR_EMITTERS_ON); if (g_w2_sensors[2] > 100 || g_w2_sensors[3] > 100 || g_w2_sensors[1] > 100) { set_motors(0, 0); - clear(); - print("WALK"); g_w2_transition++; if (g_w2_transition == 3) { set_motors(40, 40); @@ -219,9 +205,6 @@ void w2_turn_east() { //signals when the product is picked void w2_arrived_message() { if (g_w2_location.x == g_w2_destination.x && g_w2_location.y == g_w2_destination.y) { - clear(); - print("PRODUCT"); - print_long(g_w2_order_number); play_frequency(400, 500, 7); delay(500); } @@ -273,20 +256,17 @@ void w2_go_to_y() { //main function for grid mode void w2_mode_grid() { set_motors(0, 0); - clear(); - print("GRID"); delay(500); w2_begin_location(); // TODO: orders read here - for (int i = 0; i < 4; i++) { + for (int i = 0; i < g_w2_order_index; i++) { g_w2_order_number = i + 1; g_w2_destination.x = g_w2_order[i].x; g_w2_destination.y = g_w2_order[i].y; - w2_location_message(); delay(1000); w2_go_to_x(); w2_go_to_y(); @@ -294,7 +274,6 @@ void w2_mode_grid() { } w2_end_destination(); - w2_location_message(); delay(1000); w2_go_to_y(); w2_go_to_x(); |