손잡이로 제어하는 서보
가변 저항으로 서보를 조종합니다.
손잡이로 제어하는 서보은(는) CoddyKit의 무료 Arduino & IoT Academy 강의입니다. 이것은 4개 중 4번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Arduino & IoT Academy 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Arduino & IoT Academy 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
Steer with a Knob
Time to take control by hand. Turn a potentiometer and the servo follows in real time, like a tiny steering wheel. 🎛️
The Plan
The idea is simple: read the knob, convert that number into an angle, and write it to the servo, over and over inside loop().
Read the Knob
Use analogRead() on the pot's pin. It gives back a number from 0 to 1023 that follows how far you've turned the knob.
int val = analogRead(A0);The Range Mismatch
The knob speaks 0 to 1023, but the servo only understands 0 to 180. You need to convert between those two scales.
map() to the Rescue
The map() function rescales a number from one range into another. It's the perfect bridge from knob units to servo degrees.
int angle = map(val, 0, 1023, 0, 180);Send It to the Servo
Now feed that mapped angle straight into write(). The servo snaps to whatever position your knob is pointing at.
myServo.write(angle);The Whole Loop
Read, map, write: stack those three lines in loop() and the servo tracks your knob continuously.
void loop() {
int val = analogRead(A0);
int angle = map(val, 0, 1023, 0, 180);
myServo.write(angle);
}Let It Settle
Add a tiny delay() at the end of the loop. It gives the servo a moment to reach each position and smooths out the motion.
delay(15);Wire the Pot
The potentiometer's outer pins go to 5V and ground, and the middle wiper pin goes to analog pin A0. That gives a clean sweep of voltage.
Tame the Jitter
Analog readings wobble a little, so the servo may jitter. Reading several times and averaging, or ignoring tiny changes, calms it down.
Flip the Direction
Want the servo to turn the opposite way? Just swap the map output to go from 180 to 0 instead of 0 to 180.
int angle = map(val, 0, 1023, 180, 0);Quick Check
Let's connect the knob reading to a servo angle.
Recap
Read the pot, map 0 to 1023 into 0 to 180, then write that angle each loop. Now your hand directly steers the servo. 🙌
자주 묻는 질문
“손잡이로 제어하는 서보” 강의는 무료인가요?
네 — “손잡이로 제어하는 서보” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Arduino & IoT Academy 강의 전체를 잠금 해제할 수 있습니다. Arduino & IoT Academy 강의에는 총 4개의 강의가 포함되어 있습니다.
“손잡이로 제어하는 서보”에서 뭘 배우나요?
가변 저항으로 서보를 조종합니다. 브라우저에서 직접 실행하는 실습 코드로 Arduino & IoT Academy을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Arduino & IoT Academy을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Arduino & IoT Academy은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 4번째 강의입니다.
“손잡이로 제어하는 서보” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Arduino & IoT Academy 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Arduino & IoT Academy 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- 서보가 각도를 아는 원리
- 서보 라이브러리와 attach
- 0도에서 180도까지 움직이기
- 손잡이로 제어하는 서보