Miniature Vibration Motor 1027: 두 판 사이의 차이
(Created page with "{{#seo:|title=아두위키 : 아두이노 소형 진동 모터 1027 가이드|title_mode=append|keywords=아두이노, 정보과학, 메이커학습, 수행평가, 소형 진동 모터 1027, 아두이노 작품, 캡스톤작품, 아두이노 예제코드|description=아두이노로 소형 진동 모터 1027를 제어하는 방법(기본정보, 회로, 예제 코드)을 소개합니다. 정보과학과 메이커수업에 활용가능합니다.}} File:진동모터대표...") |
잔글편집 요약 없음 |
||
| (같은 사용자의 중간 판 하나는 보이지 않습니다) | |||
| 1번째 줄: | 1번째 줄: | ||
{{#seo:|title= | {{#seo:|title=ArduWiki: Arduino Mini Vibration Motor 1027 Guide|title_mode=append|keywords=Arduino, Computer Science, Maker Education, Performance Assessment, Mini Vibration Motor 1027, Arduino Project, Capstone Project, Arduino Example Code|description=How to control a mini vibration motor 1027 using Arduino (basic info, circuit, and sample code). Useful for computer science and maker classes.}} | ||
[[ | [[파일:진동모터대표이미지.jpg|center|class=coders100]] | ||
This is a miniature motor that generates vibration in a manner similar to DC motors. | This is a miniature motor that generates vibration in a manner similar to DC motors. | ||
| 45번째 줄: | 46번째 줄: | ||
=== Execution Result === | === Execution Result === | ||
<div class="coders70"> | |||
<youtube> Z4QPElR_TQs </youtube> | |||
</div> | |||
2025년 3월 27일 (목) 18:25 기준 최신판

This is a miniature motor that generates vibration in a manner similar to DC motors.
Specifications
- Recommended Input Voltage: 3V
- Operating Current: 70mA
Example Required Hardware
- Arduino board
- Vibration motor
Connection
| Arduino | vibration motor |
| GND | connected |
| D6 | connected |

Example Code
The example triggers the vibration motor to vibrate briefly three times.
const int VIBRATION = 6;
void setup() {
for (int i = 0; i < 3; i++) {
analogWrite(VIBRATION, 255 / 5 * 3);
delay(500);
analogWrite(VIBRATION, 0);
delay(500);
}
}
void loop() {
}
Execution Result