포토트랜지스터 - 밝은 빛에서 주행 멈추기#includeServo servoLeft;Servo servoRight; float volts(int adPin); //IDE마다 차이를 보이는데 함수를 인식하지 못하는 경우 함수 정의를 해야합니다. void setup() { // put your setup code here, to run once: Serial.begin(9600); tone(4,3000,1000); delay(1000); servoLeft.attach(13); servoRight.attach(12); servoLeft.writeMicroseconds(1700); servoRight.writeMicroseconds(1300);} void loop() { Serial.print("A3 = ");..