L9110 Fan Module (L9110) [D086]
https://www.youtube.com/watch?v=bubW7SLqbWE
* GitHub : https://github.com/rdiot/rdiot-d086.git
* Specs
Designed for fire fighting robot and adopt 9110 H as the bridge drive
Can be used with steering engine to control the wind direction
Can control positive and negative going motion easily.
High quality propeller,high efficiency
Can be easily blow out the lighter flame(beyond 20 cm)
Working Voltage: 5V
Color: Red + white + black
Size:Approx.34 x 26 x 12mm/1.33*1.02*0.47inch(excluding propeller)
Propeller Diameter : Approx. 75mm / 2.95 inch
Package Includes:
1 x Fan Motor Module
* Contents
- Connect
INB ----- D8
INA ----- D9
VCC ----- 5V
GND ----- GND
- Source
int INA = 9;
int INB = 8;
void setup()
{
pinMode(INA,OUTPUT);
pinMode(INB,OUTPUT);
}
void loop()
{
// LEFT
digitalWrite(INA,LOW);
digitalWrite(INB,HIGH);
delay(1000);
digitalWrite(INA,LOW);
digitalWrite(INB,LOW);
delay(3000);
// RIGHT
digitalWrite(INA,HIGH);
digitalWrite(INB,LOW);
delay(1000);
digitalWrite(INA,LOW);
digitalWrite(INB,LOW);
delay(3000);
}
'3) Actuator > Motor' 카테고리의 다른 글
100RPM Gear Motor [S141] (0) | 2016.10.05 |
---|---|
TT Motor Car Gear Motor [S142] (0) | 2016.10.05 |
Clamp Gripper Bracket Servo Mount [B045] (0) | 2016.10.04 |
4-Phase 5-Wire Stepper Motor (28BYJ-48) [D021] (0) | 2016.10.04 |
TowerPro SG5010 Micro Servo (SG5010) [D032] (0) | 2016.10.04 |