Micro:bit and L9110 fan module example

In this example we connect a Micro:bit to a L9110 fan module. This is a commonly found, basic low cost module which consists of an L9110 chip and a small motor attached. You need 4 connections between the arduino and the module. VCC, GND , INA and INB.

Description

The ASIC device control and drive motor design two-channel push-pull power amplifier discrete circuits integrated into a monolithic IC, peripheral devices and reduce the cost, improve the reliability of the whole.

This chip has two TTL / CMOS compatible with the level of the input, with good resistance; two output terminals can directly forward and reverse movement of the drive motor, it has a large current driving capability, each channel through 750 ~ 800mA of continuous current, peak current capability up to 1.5 ~ 2.0A; while it has a low output saturation voltage; built-in clamp diode reverse the impact of the current release inductive load it in the drive relays, DC motors, stepper motor or switch power tube use on safe and reliable. L9110 is widely used in toy car motor drives, stepper motor drive and switching power tube circuit.

Parts List

name Link
Micro:bit Micro:bit Development Board
Edge breakout Edge Breakout I/O Expansion Extension Board for BBC micro:bit
L9110 module L9110 Fan Module Robot Design and Development Control
connecting wire Free shipping Dupont line 120pcs 20cm male to male + male to female and female to female jumper wire

 

Schematic/Layout

Lets look at how to connect the Micro:bit to the module

microbit and l9110
microbit and l9110

Code

No libraries needed in this example, fairly basic example this one, upload the sketch and the fan will just run

 

[codesyntax lang=”cpp”]

int INA = 0; 
int INB = 1;

void setup() 
{ 
pinMode(INA,OUTPUT); 
pinMode(INB,OUTPUT); 
}

void loop() 
{ 
digitalWrite(INA,LOW);
digitalWrite(INB,HIGH); 
delay(1000); 
}

[/codesyntax]

a second example

[codesyntax lang=”cpp”]

int INA = 0; 
int INB = 1;

void setup() 
{ 
pinMode(INA,OUTPUT); 
pinMode(INB,OUTPUT); 
}

void loop() 
{ 
digitalWrite(INA,LOW);
digitalWrite(INB,HIGH); 
delay(5000); 
digitalWrite(INA,HIGH);
digitalWrite(INB,LOW); 
delay(5000); 
}

[/codesyntax]

 

Link

L9110 Fan Module for Arduino

Leave a Comment

This div height required for enabling the sticky sidebar
Ad Clicks : Ad Views : Ad Clicks : Ad Views :