Arduino Fan Module(L9110) En: 두 판 사이의 차이

아두위키 : Arduwiki
잔글편집 요약 없음
잔글편집 요약 없음
 
6번째 줄: 6번째 줄:




== Main Specifications ==
== '''Main Specifications''' ==


*'''Voltage Range''': 2.5V ~ 12V
*'''Voltage Range''': 2.5V ~ 12V
13번째 줄: 13번째 줄:




== Usage Example ==
== '''Usage Example''' ==
An example of controlling motor rotation direction.
An example of controlling motor rotation direction.


67번째 줄: 67번째 줄:
</div>
</div>


== '''응용 분야''' ==
== '''Application Areas''' ==
 
* '''Robotics''': Control of wheels in small robots
* '''Fan Control''': Adjustment of fan speed
* '''Car Models''': Control of direction and speed in car models
* '''Firefighting Robot''': Creation of a firefighting robot that can extinguish flames
* '''Others''': Various applications of DC motor control


* '''로봇 공학''': 소형 로봇의 바퀴 제어
* '''팬 제어''': 팬의 속도 조절
* '''자동차 모형''': 자동차 모형의 방향 및 속도 제어
* '''소방 로봇''': 라이터 불꽃을 끌 수 있는 소방 로봇 제작
* '''기타''': 다양한 DC 모터 제어 응용


== '''Purchase Link''' ==
== '''Purchase Link''' ==
[https://gongzipsa.com/shop/1699939319 GONGZIPSA]
[https://gongzipsa.com/shop/1699939319 GONGZIPSA]

2024년 8월 9일 (금) 11:28 기준 최신판


The L9110 motor driver module is used to control DC motors, stepper motors, or other driving devices, allowing for control of both motor speed and rotation direction. It can be easily controlled with microcontrollers like Arduino and is widely used in various projects due to its low power consumption and simple control method.


Main Specifications

  • Voltage Range: 2.5V ~ 12V
  • Product Size: 50 * 26 * 15mm
  • Propeller Diameter: 75mm


Usage Example

An example of controlling motor rotation direction.


Circuit Configuration

Arduino Uno Pin Fan Module Pin
5V VCC
GND GND
GND GND
D5 INB
D6 INA

Code

const int INA = 6;
const int INB = 5;

void setup() {
  analogWrite(INA, 0);
  analogWrite(INB, 155);
  delay(4000);
  analogWrite(INA, 0);
  analogWrite(INB, 0);
  delay(2000);
  analogWrite(INA, 155);
  analogWrite(INB, 0);
  delay(4000);
  analogWrite(INA, 0);
  analogWrite(INB, 0);
}

void loop() {
}

Execution Result

Application Areas

  • Robotics: Control of wheels in small robots
  • Fan Control: Adjustment of fan speed
  • Car Models: Control of direction and speed in car models
  • Firefighting Robot: Creation of a firefighting robot that can extinguish flames
  • Others: Various applications of DC motor control


Purchase Link

GONGZIPSA