KS0241 keyestudio EASY plug L9110 Fire Extinguishing Module

1. 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. This module should be used together with EASY plug control board.

Special Note:

The sensor/module is equipped with the RJ11 6P6C interface, compatible with our keyestudio EASY plug Control Board with RJ11 6P6C interface.

If you have the control board of other brands, it is also equipped with the RJ11 6P6C interface but has different internal line sequence, can’t be used compatibly with our sensor/module.

2. Specification

  • Fan diameter: 75mm

  • Interface: double digital

  • Working voltage: 5V

3. Technical Details

  • Dimensions: 50mm * 75mm * 18mm

  • Weight: 14.2g

4. 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.

5. Upload the Code

Download code: Code

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); 
}

6. Result

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.