Ks0241 keyestudio EASY plug L9110 Fire Extinguishing Module: Difference between revisions
Keyestudio (talk | contribs) |
Keyestudio (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
[[image:ks0241图.jpg|thumb|600px|right|EASY plug Fan Motor Module ]] | |||
==Introduction== | ==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.<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> | |||
< | 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 | ||
* Working voltage: 5V | * Working voltage: 5V | ||
== | <br> | ||
==Technical Details== | |||
* Dimensions: 50mm*75mm*18mm | |||
* Weight: 14.2g | |||
== | <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 | |||
[[category:EASY Plug]] | [[category:EASY Plug]] |
Revision as of 11:38, 23 November 2018
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.
Resources
Datasheet:
https://drive.google.com/open?id=199INIYmbgB3NJcQpzHixALOJCGaffobs
Buy from
Official Website
http://www.keyestudio.com/easy-plug-l9110-fire-extinguishing-module.html