Week Three This Week's Overview: We constructed the complete circuit and produced a cohesive code that performs the requirements of our gas safety system. Main Tasks: 1) We tackled the issues that arose last week: - Since stepper motors have high accuracies, they can be instructed to rotate to a certain position and easily return to their original position when needed. Therefore, in an attempt to avoid replacing them for another type of motor (servo motor), we changed its full-step sequence to a half-step sequence in the code which made the pace faster: half_step_sequence = [ [1, 0, 0, 0], [1, 1, 0, 0], [0, 1, 0, 0], [0, 1, 1, 0], [0, 0, 1, 0], [0, 0, 1, 1], [0, 0, 0, 1], [1, 0, 0, 1], ] Additionally, we specified the number of steps it would take to open up the window by 5 cm ( 3200 steps) and the time between each step ( 2 ms) to control the motor's speed: STEPS_PER...