We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]
Rating:
Author: MIKROE
Last Updated: 2020-10-12
Package Version: 1.0.0.0
mikroSDK Library: 1.0.0.0
Category: Brushed
Downloaded: 2698 times
Not followed.
License: MIT license
DC Motor 16 Click is a compact add-on board that contains a high-performance single phase reversible DC motor drive with speed control. This board features the ZXBM5210, a fully-featured DC motor drive solution with an average current capability of up to 700mA from Diodes Incorporated.
Library Description
The library covers all the necessary functions to control DC Motor 16 click board. There are functions for controlling motor speed, direction, starting and stoping.
Key functions:
void dcmotor16_set_direction( uint8_t dir )
- Set motor directionvoid dcmotor16_ctrl_vref( uint16_t value )
- Control motor VRef (speed)void dcmotor16_stop( void )
- Motor stopExamples description
The application is composed of three sections :
void application_task ( )
{
uint16_t cnt;
mikrobus_logWrite( ">> Motor start with direction [FORWARD] <<", _LOG_LINE );
dcmotor16_set_direction( DCMOTOR16_DIR_FORWARD );
for( cnt = 0; cnt <= 0x0100; cnt+= 25 )
{
dcmotor16_ctrl_vref( cnt );
Delay_ms( 250 );
}
Delay_ms( 2000 );
mikrobus_logWrite( ">> Motor stop ", _LOG_LINE );
dcmotor16_stop();
Delay_ms( 1000 );
mikrobus_logWrite( ">> Motor start with direction [BACKWARD] <<", _LOG_LINE );
dcmotor16_set_direction( DCMOTOR16_DIR_BACKWARD );
for( cnt = 0; cnt <= 0x0100; cnt+= 25 )
{
dcmotor16_ctrl_vref( cnt );
Delay_ms( 250 );
}
Delay_ms( 2000 );
mikrobus_logWrite( ">> Motor stop ", _LOG_LINE );
dcmotor16_stop();
Delay_ms( 1000 );
}
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. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.
Light 2 Click is a compact add-on board designed for accurate and flexible light measurement in various environments. This board features the ISL76682, a high-sensitivity, light-to-digital sensor with an I2C interface from Renesas, made specifically for automotive applications. Key features include a photodiode array that closely mimics the human eye's response, an ADC for flicker rejection, and four selectable light measurement ranges via I2C, enhancing both flexibility and accuracy. With a typical power consumption of 55µA in Standard mode and two power-down modes to minimize energy use, the board is efficient and adaptable to different lighting conditions.
[Learn More]LCD Mono Click is a Click boardâ„¢ that uses the LS013B7DH03 LCD display from Sharp which combined with the EFM32, from Silicon Labs, and its energy saving capabilities creates a powerful display application.
[Learn More]Proximity 11 Click is a close-range proximity sensing Click board, equipped with the RPR-0521RS, a very accurate and power-efficient proximity and ambient Light Sensor with IrLED. It allows an accurate proximity detection for a maximum distance of 100mm.
[Learn More]You have unsaved changes. If you choose to leave all changes will be discarded.
Do you want to subscribe in order to receive notifications regarding "DC Motor 16 click" changes.
Do you want to unsubscribe in order to stop receiving notifications regarding "DC Motor 16 click" changes.
Do you want to report abuse regarding "DC Motor 16 click".