OFF
MIKROE-4883
20 g
Status:
DC Motor 19 Click is a compact add-on board that contains a brushed DC motor driver. This board features the TC78H653FTG, a dual H-bridge driver for one or two DC brushed motors or one stepping motor, which incorporates DMOS with low ON resistance in output transistors from Toshiba Semiconductor. The Forward/Reverse/Brake/Stop mode can be selected according to the state of its input control signals, while the motor operation and current mode can be chosen through onboard switches alongside control signals. It has a wide operating voltage range of 1.8V to 7.5V with an output current capacity of 4A (DC). Besides, it also features built-in protection against under-voltage, overcurrent, and overtemperature conditions. This Click board™ is suitable for driving DC brushed motors and stepping motors for low voltage equipment such as home electronic products and devices using a 5V USB power supply.
DC Motor 19 Click is supported by a mikroSDK compliant library, which includes functions that simplify software development. This Click board™ comes as a fully tested product, ready to be used on a system equipped with the mikroBUS™ socket.
This product is no longer in stock
Availability date:
DC Motor 19 Click as its foundation uses the TC78H653FTG, a dual H-bridge driver for one or two DC brushed motors or one stepping motor from Toshiba Semiconductor. The integrated MOSFETs, which configures with an H-Bridge circuit inside the TC78H653FTG, use DMOS elements with low-on resistance (0.11Ω typical with 5V power supply and activated Large mode). It has a wide operating voltage range with an output current capacity of 4A (DC) and control functions, including motor-related functions (Forward, Reverse, Brake, Stop), current control, and built-in detection circuits for overcurrent, overheat, and low/high voltage.
As mentioned in the product description, DC Motor 19 Click communicates with MCU using several GPIO pins. Also, this Click board™ has a Standby pin labeled as SBY routed to the CS pin of the mikroBUS™ socket used to switch to Standby mode by toggling the pin. When the SBY pin is low, TC78H653FTG stops supplying the power to the logic circuit, the Standby current is significantly reduced because all circuits in the IC are configured with CMOS/DMOS elements, and the current consumption in this mode is 0μA typical.
To turn ON the internal MOSFETs of the TC78H653FTG, they need to be switched by the logic level, which is input to the control input pins: IN1, IN2, IN3, and IN4 pins routed to the RST, AN, PWM, and INT pins of the mikroBUS™ socket. Thereby, the Forward/Reverse/Brake/Stop rotation direction mode can be selected according to the state of its input control signals, while the motor operation and current mode can be chosen through onboard switches labeled as MODE and LARGE, alongside control signals. With active LARGE mode, IN1 and IN2 pins control this mode while motor control pins A+ and A- are connected as OUT+ pin and pins B- and B+ pin are connected as OUT- pin. More information on the Motor Mode Selection can be found in the attached datasheet.
The DC Motor 19 supports an external power supply for the TC78H653FTG, which can be connected to the input terminal labeled as VM and should be within the range of 1.8V to 7.5V, while the DC motor coils can be connected to the terminals labeled as B+, B-, A-, and A+.
This 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 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.
Type
Brushed
Applications
Can be used for driving DC brushed motors and stepping motors for low voltage equipment such as home electronic products and devices using a 5V USB power supply
On-board modules
TC78H653FTG - dual H-bridge driver for one or two DC brushed motors or one stepping motor from Toshiba Semiconductor
Key Features
Low power consumption, dual bridge driver, high drive capability, low voltage drive, low-on resistance, selectable motor operation, built-in Standby and protection features, and more
Interface
GPIO
Feature
No ClickID
Compatibility
mikroBUS™
Click board size
M (42.9 x 25.4 mm)
Input Voltage
3.3V or 5V,External
This table shows how the pinout on DC Motor 19 Click corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).
Label | Name | Default | Description |
---|---|---|---|
LD1 | PWR | - | Power LED Indicator |
JP1 | VCC SEL | Left | Logic Level Voltage Selection 3V3/5V: Left position 3V3, Right position 5V |
JP2 | VM SEL | Left | TC78H653FTG Power Supply Selection VEXT/VCC: Left position VEXT, Right position VCC |
SW1 | LARGE | - | Large-Current Drive Mode Selection Switch |
SW2 | MODE | - | Motor Mode Selection Switch |
Description | Min | Typ | Max | Unit |
---|---|---|---|---|
Supply Voltage VCC | 3.3 | - | 5 | V |
External Power Supply VM | 1.8 | - | 7.5 | V |
Maximum Output Current | - | - | 4 | A |
Operating Temperature Range | -40 | +25 | +105 | °C |
We provide a library for the DC Motor 19 Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
Package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.
Library Description
This library contains API for DC Motor 19 Click driver.
Example key functions
dcmotor19_drive_motor
This function drives the motor for a certian time specified by time_ms at the desired speed. The motor channel and mode must be previously selected using the dcmotor19_set_channel_mode function.
dcmotor19_set_channel_mode
This function sets the active channel and mode which will be used by the dcmotor19_drive_motor function.
dcmotor19_disable_standby_mode
This function disables the standby mode.
Example Description
This example demonstrates the use of DC Motor 19 Click board™ by driving the motors in both direction in the span of 14 seconds.
void application_task ( void ) { log_printf ( &logger, " Driving motors forward...rn" ); dcmotor19_set_channel_mode ( &dcmotor19, DCMOTOR19_CHANNEL_1 | DCMOTOR19_CHANNEL_2, DCMOTOR19_MODE_FORWARD ); dcmotor19_drive_motor ( &dcmotor19, DCMOTOR19_SPEED_DEFAULT, 5000 ); log_printf ( &logger, " Pull brake!rn" ); dcmotor19_set_channel_mode ( &dcmotor19, DCMOTOR19_CHANNEL_1 | DCMOTOR19_CHANNEL_2, DCMOTOR19_MODE_SHORT_BRAKE ); Delay_ms( 2000 ); log_printf ( &logger, " Driving motors in reverse...rn" ); dcmotor19_set_channel_mode ( &dcmotor19, DCMOTOR19_CHANNEL_1 | DCMOTOR19_CHANNEL_2, DCMOTOR19_MODE_REVERSE ); dcmotor19_drive_motor ( &dcmotor19, DCMOTOR19_SPEED_DEFAULT, 5000 ); log_printf ( &logger, " Stop driving!rnn" ); dcmotor19_set_channel_mode ( &dcmotor19, DCMOTOR19_CHANNEL_1 | DCMOTOR19_CHANNEL_2, DCMOTOR19_MODE_STOP ); Delay_ms( 2000 ); }
The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.
Other Mikroe Libraries used in the example:
Additional notes and informations
Depending on the development board you are using, you may need 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.
This 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.
For more information about mikroSDK, visit the official page.
NOTE: Please be advised that any peripheral devices or accessories shown connected to the Click board™ are not included in the package. Check their availability in our shop or in the YMAN section below.