// 모터 핀 정의const int rightMotor1Pin1 = 3; // 오른쪽 모터 1 제어 핀const int rightMotor1Pin2 = 4; // 오른쪽 모터 1 반대 방향 핀const int rightMotor2Pin1 = 5; // 오른쪽 모터 2 제어 핀const int rightMotor2Pin2 = 6; // 오른쪽 모터 2 반대 방향 핀const int leftMotor1Pin1 = 7; // 왼쪽 모터 1 제어 핀const int leftMotor1Pin2 = 8; // 왼쪽 모터 1 반대 방향 핀const int leftMotor2Pin1 = 9; // 왼쪽 모터 2 제어 핀const int leftMotor2Pin2 = 10; // 왼쪽 모터 2 반대 방향 핀const i..