아두이노(arduino) moter 모터 소스코드 0도부터 180도까지 점점 일정한 속도로 움직인다. #include #include LiquidCrystal_I2C lcd = LiquidCrystal_I2C(0x27,16,2); Servo servo; const int SERVO_PIN = 9; const int VR_PIN = A0; void setup() { // put your setup code here, to run once: lcd.init(); lcd.begin(16, 2); lcd.clear(); lcd.backlight(); Serial.begin(115200UL); pinMode(VR_PIN, INPUT); pinMode(SERVO_PIN, OUTPUT); servo.attach(SE..