Carte à clic H-Bridge Driver 2
Carte à clic H-Bridge Driver 2
Le H-Bridge Driver 2 Click Board™ est une carte complémentaire compacte qui contient un pilote de grille en pont en H, également connu sous le nom de pré-pilote en pont complet. Cette carte comprend le NCV7535, un pré-pilote monolithique en pont en H pour un moteur à courant continu avec un ensemble de fonctionnalités améliorées, utile dans les systèmes automobiles d'ON Semiconductor. Les canaux du pilote de grille sont contrôlés indépendamment par une interface SPI 24 bits, ce qui permet à cette carte Click™ d'être configurée en option en mode pont en H simple ou double. Elle dispose d'une large plage de tension de fonctionnement de 6 V à 18 V avec des fonctions de protection intégrées contre les courts-circuits, les sous-tensions/surtensions, les surintensités et les surchauffes. Cette carte Click™ est adaptée pour piloter des MOSFET externes, permettant ainsi le contrôle d'un moteur à courant continu.
La carte Click Board™ H-Bridge Driver 2 est prise en charge par une bibliothèque compatible mikroSDK, qui comprend des fonctions qui simplifient le développement logiciel. Cette carte Click Board™ est un produit entièrement testé, prêt à être utilisé sur un système équipé du socket mikroBUS™.
How Does The H-Bridge Driver 2 Click Board™ Work?
The H-Bridge Driver 2 Click Board™ as its foundation uses the NCV7535, H-bridge gate driver (or full-bridge pre-driver) with independent high and low-side driver channels from ON Semiconductor. This monolithic H−bridge pre-driver has an enhanced feature set helpful in various applications for a DC motor drive. It allows bi-directional or uni-directional motor operations, with integrated MOSFET and load protection.
The onboard VIN terminal is the device's power supply input, allowing a wide operating voltage range from 6V to 18V. The NCV7535 also comes with built-in protection features against short-circuit and overtemperature conditions, under-voltage (UV), overvoltage (OV), and overcurrent events. When the supply returns to a level above the UV threshold or below the OV threshold, the device resumes regular operation according to the established condition of the input pins.
The H-Bridge Driver 2 Click Board™ communicates with MCU through a standard SPI interface supporting the common SPI mode, SPI Mode 0, providing data in digital format of 24-bits. It also uses the Enable pin labelled as EN and routed to the RST pin of the mikroBUS™ socket to optimize power consumption, used for its power ON/OFF purposes. Besides, by using the PWM signal from the mikroBUS™ socket, combined with the SPI interface and its control register, the user can also use active or passive free-wheeling bridge configurations.
The H-Bridge Driver 2 Click Board™ can operate with both 3.3V and 5V logic voltage levels selected via the VCC SEL jumper. This way, it is allowed for both 3.3V and 5V capable MCUs to use the communication lines properly. However, the Click board™ comes equipped with a library containing easy-to-use functions and an example code that can be used, as a reference, for further development.
SPECIFICATIONS
Type | Brushed |
Applications | The H-Bridge Driver 2 Click Board™ can be used to drive external MOSFETs, thus providing control of a DC-motor |
On-board modules | NCV7535 - H-bridge gate driver (or full-bridge pre-driver) with independent high and low-side driver channels from ON Semiconductor |
Key Features | Active and standby operating modes, active/passive free-wheeling, single or dual H-bridge mode, 24-bit SPI interface, UVLO and OVLO, protection features, PWM, and more |
Interface | PWM,SPI |
Compatibility | mikroBUS |
Click board size | M (42.9 x 25.4 mm) |
Input Voltage | 3.3V or 5V |
PINOUT DIAGRAM
This table shows how the pinout of the H-Bridge Driver 2 Click Board™ corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).
Notes | Pin | Pin | Notes | ||||
---|---|---|---|---|---|---|---|
NC | 1 | AN | PWM | 16 | PWM | PWM Signal | |
Enable | EN | 2 | RST | INT | 15 | NC | |
SPI Chip Select | CS | 3 | CS | RX | 14 | NC | |
SPI Clock | SCK | 4 | SCK | TX | 13 | NC | |
SPI Data OUT | SDO | 5 | MISO | SCL | 12 | NC | |
SPI Data IN | SDI | 6 | MOSI | SDA | 11 | NC | |
Power Supply | 3.3V | 7 | 3.3V | 5V | 10 | 5V | Power Supply |
Ground | GND | 8 | GND | GND | 9 | GND | Ground |
ONBOARD SETTINGS AND INDICATORS
Label | Name | Default | Description |
---|---|---|---|
LD1 | PWR | - | Power LED Indicator |
JP1 | VCC SEL | Right | Logic Level Voltage Selection 3V3/5V: Left position 3V3, Right position 5V |
H-BRIDGE DRIVER 2 CLICK ELECTRICAL SPECIFICATIONS
Description | Min | Typ | Max | Unit |
---|---|---|---|---|
Supply Voltage | 3.3 | - | 5 | V |
External Power Supply | 6 | - | 18 | V |
Operating Temperature Range | -40 | +25 | +85 | °C |
Software Support
We provide a library for the H-Bridge Driver 2 Click Board™ as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
The package can be downloaded/installed directly from NECTO Studio The package Manager (recommended), downloaded from our LibStock™ or found on MikroE Github account.
Library Description
This library contains API for the H-Bridge Driver 2 Click Board™ driver.
Example key functions
-
hbridgedriver2_run_forward
H-Bridge Driver 2 run forward function. -
hbridgedriver2_run_backward
H-Bridge Driver 2 run backward function. -
hbridgedriver2_stop_with_brake
H-Bridge Driver 2 stop with brake function.
Example Description
This library contains API for the H-Bridge Driver 2 Click Board™ driver. This demo application shows the use of the H-Bridge Driver 2 Click Board™.
void application_task ( void )
{
log_printf( &logger, "t>>> Run Forwardrn" );
hbridgedriver2_run_forward( &hbridgedriver2, &global_fault );
display_status( );
Delay_ms( 2000 );
log_printf( &logger, "t>>> Stop With Brakern" );
hbridgedriver2_stop_with_brake( &hbridgedriver2, &global_fault );
display_status( );
Delay_ms( 2000 );
log_printf( &logger, "t>>> Run Backwardrn" );
hbridgedriver2_run_backward( &hbridgedriver2, &global_fault );
display_status( );
Delay_ms( 2000 );
log_printf( &logger, "t>>> Stoprn" );
hbridgedriver2_stop( &hbridgedriver2, &global_fault );
display_status( );
Delay_ms( 2000 );
}
The full application code, and ready to use projects can be installed directly from NECTO Studio The package Manager (recommended), downloaded from our LibStock™ or found on MikroE Github account.
Other MikroE Libraries used in the example:
- MikroSDK.Board
- MikroSDK.Log
- Click.HBridgeDriver2
Additional Notes and Information
Depending on the development board you are using, you may need a USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. UART terminal is available in all MikroElektronika compilers.
MIKROSDK
The H-Bridge Driver 2 Click Board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
Software Support
We provide a library for the H-Bridge Driver 2 Click Board™ as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
The package can be downloaded/installed directly from NECTO Studio The package Manager (recommended), downloaded from our LibStock™ or found on MikroE Github account.
Library Description
This library contains API for the H-Bridge Driver 2 Click Board™ driver.
Example key functions
-
hbridgedriver2_run_forward
H-Bridge Driver 2 run forward function. -
hbridgedriver2_run_backward
H-Bridge Driver 2 run backward function. -
hbridgedriver2_stop_with_brake
H-Bridge Driver 2 stop with brake function.
Example Description
This library contains API for the H-Bridge Driver 2 Click Board™ driver. This demo application shows the use of the H-Bridge Driver 2 Click Board™.
void application_task ( void )
{
log_printf( &logger, "t>>> Run Forwardrn" );
hbridgedriver2_run_forward( &hbridgedriver2, &global_fault );
display_status( );
Delay_ms( 2000 );
log_printf( &logger, "t>>> Stop With Brakern" );
hbridgedriver2_stop_with_brake( &hbridgedriver2, &global_fault );
display_status( );
Delay_ms( 2000 );
log_printf( &logger, "t>>> Run Backwardrn" );
hbridgedriver2_run_backward( &hbridgedriver2, &global_fault );
display_status( );
Delay_ms( 2000 );
log_printf( &logger, "t>>> Stoprn" );
hbridgedriver2_stop( &hbridgedriver2, &global_fault );
display_status( );
Delay_ms( 2000 );
}
The full application code, and ready to use projects can be installed directly from NECTO Studio The package Manager (recommended), downloaded from our LibStock™ or found on MikroE Github account.
Other MikroE Libraries used in the example:
- MikroSDK.Board
- MikroSDK.Log
- Click.HBridgeDriver2
Additional Notes and Information
Depending on the development board you are using, you may need a USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. UART terminal is available in all MikroElektronika compilers.
MIKROSDK
The H-Bridge Driver 2 Click Board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
Carte à clic H-Bridge Driver 2
Frequently Asked Questions
Have a Question?
Be the first to ask a question about this.