TOP Contributors

  1. MIKROE (2762 codes)
  2. Alcides Ramos (374 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (118 codes)
  5. Bugz Bensce (90 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (139248 times)
  2. FAT32 Library (71743 times)
  3. Network Ethernet Library (57115 times)
  4. USB Device Library (47428 times)
  5. Network WiFi Library (43082 times)
  6. FT800 Library (42403 times)
  7. GSM click (29835 times)
  8. mikroSDK (28073 times)
  9. PID Library (26885 times)
  10. microSD click (26198 times)
Libstock prefers package manager

Package Manager

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]

< Back
mikroSDK Library

Brushless 10 Click

Rating:

0

Author: MIKROE

Last Updated: 2024-10-31

Package Version: 2.1.0.4

mikroSDK Library: 2.0.0.0

Category: Brushless

Downloaded: 83 times

Not followed.

License: MIT license  

Brushless 10 Click is a compact add-on board that provides precise control over brushless DC motors. This board features the TC78B016FTG, a 3-phase sine-wave PWM driver from Toshiba Semiconductor. The TC78B016FTG features Intelligent Phase Control (InPAC) for automatic motor phase adjustment, eliminating manual calibration, supporting an external power supply from 6V to 30V, and adjusting current output up to 3A. It also includes various control and diagnostic features such as rotational speed output, brake function, speed command, and safety detections with visual indicators. The onboard DAC also offers additional tunability for motor control enhancements like lead angle control, output duty cycle, motor lockout, and PWM frequency selection.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "Brushless 10 Click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "Brushless 10 Click" changes.

Do you want to report abuse regarding "Brushless 10 Click".

  • Information
  • Comments (0)

mikroSDK Library Blog


Brushless 10 Click

Brushless 10 Click is a compact add-on board that provides precise control over brushless DC motors. This board features the TC78B016FTG, a 3-phase sine-wave PWM driver from Toshiba Semiconductor. The TC78B016FTG features Intelligent Phase Control (InPAC) for automatic motor phase adjustment, eliminating manual calibration, supporting an external power supply from 6V to 30V, and adjusting current output up to 3A. It also includes various control and diagnostic features such as rotational speed output, brake function, speed command, and safety detections with visual indicators. The onboard DAC also offers additional tunability for motor control enhancements like lead angle control, output duty cycle, motor lockout, and PWM frequency selection.

brushless10_click.png

Click Product page


Click library

  • Author : Stefan Filipovic
  • Date : Mar 2024.
  • Type : PWM type

Software Support

We provide a library for the Brushless 10 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 Brushless 10 Click driver.

Standard key functions :

  • brushless10_cfg_setup Config Object Initialization function.

    void brushless10_cfg_setup ( brushless10_cfg_t *cfg );
  • brushless10_init Initialization function.

    err_t brushless10_init ( brushless10_t *ctx, brushless10_cfg_t *cfg );
  • brushless10_default_cfg Click Default Configuration function.

    err_t brushless10_default_cfg ( brushless10_t *ctx );

Example key functions :

  • brushless10_set_duty_cycle This function sets the PWM duty cycle in percentages ( Range[ 0..1 ] ).

    err_t brushless10_set_duty_cycle ( brushless10_t *ctx, float duty_cycle );
  • brushless10_pull_brake This function pulls brake by setting the BRAKE pin to high logic state.

    void brushless10_pull_brake ( brushless10_t *ctx );
  • brushless10_release_brake This function releases brake by setting the BRAKE pin to low logic state.

    void brushless10_release_brake ( brushless10_t *ctx );

Example Description

This example demonstrates the use of the Brushless 10 Click board by driving the motor at different speeds.

The demo application is composed of two sections :

Application Init

Initializes the driver and performs the Click default configuration.


void application_init ( void )
{
    log_cfg_t log_cfg;  /**< Logger config object. */
    brushless10_cfg_t brushless10_cfg;  /**< Click config object. */

    /** 
     * Logger initialization.
     * Default baud rate: 115200
     * Default log level: LOG_LEVEL_DEBUG
     * @note If USB_UART_RX and USB_UART_TX 
     * are defined as HAL_PIN_NC, you will 
     * need to define them manually for log to work. 
     * See @b LOG_MAP_USB_UART macro definition for detailed explanation.
     */
    LOG_MAP_USB_UART( log_cfg );
    log_init( &logger, &log_cfg );
    log_info( &logger, " Application Init " );

    // Click initialization.
    brushless10_cfg_setup( &brushless10_cfg );
    BRUSHLESS10_MAP_MIKROBUS( brushless10_cfg, MIKROBUS_1 );
    if ( BRUSHLESS10_OK != brushless10_init( &brushless10, &brushless10_cfg ) )
    {
        log_error( &logger, " Communication init." );
        for ( ; ; );
    }

    if ( BRUSHLESS10_OK != brushless10_default_cfg ( &brushless10 ) )
    {
        log_error( &logger, " Default configuration." );
        for ( ; ; );
    }

    log_info( &logger, " Application Task " );
}

Application Task

Controls the motor speed by changing the PWM duty cycle every 2 seconds. The duty cycle ranges from 20% to 100%. Each step will be logged on the USB UART where you can track the program flow.

void application_task ( void )
{
    static int8_t duty_cnt = 2;
    static int8_t duty_inc = 1;
    float duty = duty_cnt / 10.0;

    brushless10_set_duty_cycle ( &brushless10, duty );
    log_printf( &logger, "> Duty: %d%%\r\n", ( uint16_t )( duty_cnt * 10 ) );

    Delay_ms ( 1000 );
    Delay_ms ( 1000 );

    duty_cnt += duty_inc;
    if ( duty_cnt > 10 ) 
    {        
        duty_cnt = 9;
        duty_inc = -1;
    }
    else if ( duty_cnt < 2 ) 
    {
        duty_cnt = 2;
        duty_inc = 1;
        log_printf( &logger, " Pull brake\r\n" );
        brushless10_pull_brake ( &brushless10 );
        Delay_ms ( 1000 );
        Delay_ms ( 1000 );
        Delay_ms ( 1000 );
        log_printf( &logger, " Release brake\r\n" );
        brushless10_release_brake ( &brushless10 );
        Delay_ms ( 1000 );
    }
}

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:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.Brushless10

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.


ALSO FROM THIS AUTHOR

CO2 Click

0

CO2 Click is a compact add-on board that contains Sensirion miniature CO2 sensor. This board features the STC31, a gas concentration sensor designed for high-volume applications. The STC31 utilizes a revolutionized thermal conductivity measurement principle, which results in superior repeatability and long-term stability. The outstanding performance of these sensors is based on Sensirion’s patented CMOSens® sensor technology, which combines the sensor element, signal processing, and digital calibration on a small CMOS chip. It features a digital I2C interface, which makes it easy to connect directly to MCU. This Click board™ represents an ideal choice for health, environmental, industrial, residential monitoring of high CO2 concentrations and applications where reliability is crucial.

[Learn More]

SRAM 4 Click

0

SRAM 4 Click is a compact add-on board that contains highly reliable nonvolatile memory. This board features the CY14B512Q, a 512Kbit SRAM with a nonvolatile element in each memory cell from Cypress Semiconductor, now part of Infineon.

[Learn More]

Boost 2 Click

0

BOOST 2 Click is a DC-DC step-up (boost) regulator that has a fixed 5V output, which can be obtained from any low voltage input - such as NiCd, NiMH or one cell Li-Po/Li-Ion batteries.

[Learn More]