TOP Contributors

  1. MIKROE (2653 codes)
  2. Alcides Ramos (351 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (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 (136646 times)
  2. FAT32 Library (69858 times)
  3. Network Ethernet Library (55899 times)
  4. USB Device Library (46237 times)
  5. Network WiFi Library (41869 times)
  6. FT800 Library (41100 times)
  7. GSM click (28953 times)
  8. PID Library (26403 times)
  9. mikroSDK (26322 times)
  10. microSD click (25334 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 7 click

Rating:

5

Author: MIKROE

Last Updated: 2020-07-13

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: Brushless

Downloaded: 1819 times

Not followed.

License: MIT license  

Brushless 7 Click based on TC78B009FTG IC from Toshiba is a three-phase BLDC motor controller that does not require Hall sensors. Some of the main features are a built-in closed loop speed control function that regulates and maintains the motor rotational speed under dynamic power fluctuations and load variations.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "Brushless 7 click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "Brushless 7 click" changes.

Do you want to report abuse regarding "Brushless 7 click".

  • mikroSDK Library 2.0.0.0
  • Comments (0)
DOWNLOAD LINK RELATED COMPILER CONTAINS
mikroBasic PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc

mikroSDK Library Blog

Brushless 7 Click

Brushless 7 Click

Native view of the Brushless 7 Click board.

View full image
Brushless 7 Click

Brushless 7 Click

Front and back view of the Brushless 7 Click board.

View full image

Library Description

Library provides functions for controlling brushless motor. It has functions for communicating with device with I2C module, and controlling pins. There are function for controlling device over couple of modes.

Key functions:

  • void brushless7_generic_write ( uint8_t reg_adr, uint8_t tx_data ) - Function for writing one byte of data to device
  • uint8_t brushless7_generic_read ( uint8_t reg_adr ) - Function for reading one byte of data from device
  • void brushless7_default_config ( void ) - Function for setting default configuration of device

Examples description

The application is composed of three sections :

  • System Initialization - Initialization of communication module
  • Application Initialization - Setts default configuration and sets parameters for selected mode
  • Application Task - Setts 3 different speed of motor in span of 20 seconds
void application_task ( )
{
    if ( BRUSHLESS7_CTRL_TYPE_DUTY == demo_type_data )
    {
        mikrobus_logWrite( " ----- 20 ----- ", _LOG_LINE );
        stop_start();
        brushless7_change_duty( 20 );
        Delay_ms( 20000 );
        mikrobus_logWrite( " ----- 40 ----- ", _LOG_LINE );
        stop_start();
        brushless7_change_duty( 40 );
        Delay_ms( 20000 );
        mikrobus_logWrite( " ----- 8 ----- ", _LOG_LINE );
        stop_start();
        brushless7_change_duty( 8 );
        Delay_ms( 20000 );
    }
    else if ( BRUSHLESS7_CTRL_TYPE_RPM == demo_type_data )
    {
        mikrobus_logWrite( " ----- 400 ----- ", _LOG_LINE );
        stop_start();
        brushless7_start_rpm( 400 );
        Delay_ms( 20000 );
        mikrobus_logWrite( " ----- 1000 ----- ", _LOG_LINE );
        stop_start();
        brushless7_start_rpm( 1000 );
        Delay_ms( 20000 );
        mikrobus_logWrite( " ----- 100 ----- ", _LOG_LINE );
        stop_start();
        brushless7_start_rpm( 100 );
        Delay_ms( 20000 );
    }
}

Additional Functions :

  • void stop_start ( ) - Funcnction stops motor and then restores previous mode of working

Other mikroE Libraries used in the example:

  • I2C
  • UART

Additional notes and informations

Depending on the development board you are using, you may need USB UART clickUSB 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.

ALSO FROM THIS AUTHOR

Pressure 4 click

0

Pressure 4 click is an absolute barometric pressure measurement Click board™, which features a low power consumption, high precision barometric pressure sensor. Capable of using both SPI and I2C communication protocols, Pressure 4 click allows being interfaced with a broad range of various microcontroller units (MCUs). The sensor used on this Click board™ features onboard processing capabilities, such as the IIR filtering, used to filter out abrupt changes of pressure. Low power consumption allows Pressure 4 click to be used in many portable, battery-powered applications.

[Learn More]

Semper Flash click

5

The Semper Flash Click is a Click board which features the S25HS512T, a perfect solution for the mass storage option in various embedded applications.

[Learn More]

Audio Amp 5 click

5

Audio Amp 5 Click is a stereo audio amplifier, capable of delivering up to 10W per channel with the 8Ω load. It is based on the TPA3138D2, a class-D integrated amplifier, which utilizes a highly efficient switching scheme.

[Learn More]