Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • Unit_test_sprint_3
  • Package
  • GUI
  • Segregation_of_duties_&_Deviations_in_the_work_pattern
  • 31-deviations-in-the-collaboration-patterns
  • Identification_of_batches
  • Resource_activity_performance
  • Activities_repeated_resources
9 results

Unit_test.ipynb

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    connectWires.m 398 B
    function [] = connectWires()
    %Connect motors to ports
    disp(sprintf('Please connect middle motor to port A, large motors to port B and C. Then press any key to continue.\n\n'));
    pause();
    
    %Connect sensors to ports
    disp(sprintf('Please connect touch sensor to port 1, gyro sensor to port 2, color sensor to port 3,\nultrasonic sensor to port 4. Then press any key to continue.\n\n'));
    pause();
    
    end