Ks0241 keyestudio EASY plug L9110 Fire Extinguishing Module: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
==EASY plug L9110 Fire Extinguishing Module==
[[image:ks0241图.jpg|thumb|600px|right|EASY plug Fan Motor Module ]]
<br>[[File:KS0241-1.png|500px|frameless|thumb]]<br>
 


==Introduction==
==Introduction==
EASY plug L9110 fire extinguishing module needs to match with the EASY plug Control board V2.0. The module is connected to the double digital port with only one line, which is very easy and convenient.<br>
Make an air aerial propeller vessel, a cooling system, or spinning machine with this small fan module. Add flavor to your own interesting projects with this module.<br>
The module uses the L9110 driver to control the front and back rotation of the propeller, which can easily blow out the fire of a lighter far from 20cm.<br>
The fan motor module uses the L9110 driver to control the forward and reverse rotation of propeller. It should be connected to the double digital port with only one line, pretty convenient. <br>
<br>[[File:KS0241-.jpg|500px|frameless|thumb]]<br>
It can easily blow out the fire of a lighter 20cm away. This module is commonly used for STEM class. <br>
<span style="color: red">'''Note: ''' this module should be used together with EASY plug control board.
<br>


==Specification==
==Specification==
* Fan diameter: 75mm  
* Fan diameter: 75mm  
* Interface:double digital interface
* Interface: double digital  
* Working voltage: 5V
* Working voltage: 5V
* Weight:14.0g
<br>[[File:KS0241-(2).jpg|500px|frameless|thumb]]<br>


==Connection Diagram ==
<br>
<br>[[File:KS0241-2.png|500px|frameless|thumb]]<br>
==Technical Details==
* Dimensions: 50mm*75mm*18mm
* Weight: 14.2g


==Sample Code==
<br>
==Connect It Up==
Connect the EASY Plug fan motor module to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
<br>[[File:KS0241.png|500px|frameless|thumb]]<br>
<br>
 
==Upload the Code==
Copy and paste below code to [http://wiki.keyestudio.com/index.php/How_to_Download_Arduino_IDE Arduino IDE] and upload.
<pre>
<pre>
int INA = 3;   
int INA = 3;   
Line 42: Line 51:
}
}
</pre>
</pre>
<br>
==What You Should See==
Done uploading the code, the motor fan will rotate forward for five seconds at maximum speed, then stop for 0.2 second, and rotate reverse for five seconds at maximum speed, then stop for 0.2 second, repeatedly.
<br>[[File:ks0241 Result.png|500px|frameless|thumb]]<br>
<br>


==Resources ==
==Resources ==
'''Datasheet:''' <br>
'''Datasheet:''' <br>
https://drive.google.com/open?id=199INIYmbgB3NJcQpzHixALOJCGaffobs
https://drive.google.com/open?id=199INIYmbgB3NJcQpzHixALOJCGaffobs
<br>


==Buy from ==
==Buy from ==
'''Official Website'''
'''Official Website'''<br>
http://www.keyestudio.com/easy-plug-l9110-fire-extinguishing-module.html


http://www.keyestudio.com/easy-plug-l9110-fire-extinguishing-module.html


[[category:EASY Plug]]
[[category:EASY Plug]]

Revision as of 11:38, 23 November 2018

EASY plug Fan Motor Module


Introduction

Make an air aerial propeller vessel, a cooling system, or spinning machine with this small fan module. Add flavor to your own interesting projects with this module.
The fan motor module uses the L9110 driver to control the forward and reverse rotation of propeller. It should be connected to the double digital port with only one line, pretty convenient.
It can easily blow out the fire of a lighter 20cm away. This module is commonly used for STEM class.
Note: this module should be used together with EASY plug control board.

Specification

  • Fan diameter: 75mm
  • Interface: double digital
  • Working voltage: 5V


Technical Details

  • Dimensions: 50mm*75mm*18mm
  • Weight: 14.2g


Connect It Up

Connect the EASY Plug fan motor module to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
thumb

Upload the Code

Copy and paste below code to Arduino IDE and upload.

int INA = 3;  
int INB = 4;
void setup() 
{ 
pinMode(INA,OUTPUT); 
pinMode(INB,OUTPUT); 
} 
void loop() 
{ 
analogWrite(INA, 255);
digitalWrite(INB,LOW); 
delay(5000);
digitalWrite(INA,LOW);
digitalWrite(INB,LOW); 
delay(200); 
digitalWrite(INA,LOW);
analogWrite(INB, 255);
delay(5000); 
digitalWrite(INA,LOW);
digitalWrite(INB,LOW); 
delay(200); 
}


What You Should See

Done uploading the code, the motor fan will rotate forward for five seconds at maximum speed, then stop for 0.2 second, and rotate reverse for five seconds at maximum speed, then stop for 0.2 second, repeatedly.
thumb

Resources

Datasheet:
https://drive.google.com/open?id=199INIYmbgB3NJcQpzHixALOJCGaffobs

Buy from

Official Website
http://www.keyestudio.com/easy-plug-l9110-fire-extinguishing-module.html