TOP Contributors

  1. MIKROE (2777 codes)
  2. Alcides Ramos (374 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (118 codes)
  5. Bugz Bensce (97 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 (139514 times)
  2. FAT32 Library (72005 times)
  3. Network Ethernet Library (57246 times)
  4. USB Device Library (47592 times)
  5. Network WiFi Library (43181 times)
  6. FT800 Library (42542 times)
  7. GSM click (29926 times)
  8. mikroSDK (28274 times)
  9. PID Library (26930 times)
  10. microSD click (26299 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

SolidSwitch 8 Click

Rating:

0

Author: MIKROE

Last Updated: 2024-11-21

Package Version: 2.1.0.3

mikroSDK Library: 2.0.0.0

Category: Relay

Downloaded: 11 times

Not followed.

License: MIT license  

SolidSwitch 8 Click is a compact add-on board for reliable load control in automotive and industrial applications. This board features the BTS3035EJXUMA1, a smart low-side switch from Infineon. It features a 35mΩ N-channel MOSFET, capable of handling load voltages from 6V to 18V and currents up to 5A, making it suitable for various resistive, inductive, and capacitive loads. The board includes essential protection mechanisms like overtemperature shutdown, overvoltage protection, and current limitation, ensuring reliable operation under demanding conditions. With integrated feedback through an open-drain status pin and a red LED indicator for visual alerts, it enhances diagnostics and safety.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "SolidSwitch 8 Click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "SolidSwitch 8 Click" changes.

Do you want to report abuse regarding "SolidSwitch 8 Click".

  • Information
  • Comments (0)

mikroSDK Library Blog


SolidSwitch 8 Click

SolidSwitch 8 Click is a compact add-on board for reliable load control in automotive and industrial applications. This board features the BTS3035EJXUMA1, a smart low-side switch from Infineon. It features a 35mΩ N-channel MOSFET, capable of handling load voltages from 6V to 18V and currents up to 5A, making it suitable for various resistive, inductive, and capacitive loads. The board includes essential protection mechanisms like overtemperature shutdown, overvoltage protection, and current limitation, ensuring reliable operation under demanding conditions. With integrated feedback through an open-drain status pin and a red LED indicator for visual alerts, it enhances diagnostics and safety.

solidswitch8_click.png

Click Product page


Click library

  • Author : Stefan Ilic
  • Date : Jan 2024.
  • Type : GPIO type

Software Support

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

Standard key functions :

  • solidswitch8_cfg_setup Config Object Initialization function.

    void solidswitch8_cfg_setup ( solidswitch8_cfg_t *cfg );
  • solidswitch8_init Initialization function.

    err_t solidswitch8_init ( solidswitch8_t *ctx, solidswitch8_cfg_t *cfg );
  • solidswitch8_default_cfg Click Default Configuration function.

    err_t solidswitch8_default_cfg ( solidswitch8_t *ctx );

Example key functions :

  • solidswitch8_set_err_pin This function sets the err pin state to the selected level of SolidSwitch 8 Click board.

    void solidswitch8_set_err_pin ( solidswitch8_t *ctx, uint8_t pin_state );
  • solidswitch8_set_in_pin This function sets the in pin state to the selected level of SolidSwitch 8 Click board.

    void solidswitch8_set_in_pin ( solidswitch8_t *ctx, uint8_t pin_state );
  • solidswitch8_get_sts_pin This function reads the state of the status pin of SolidSwitch 8 Click board.

    uint8_t solidswitch8_get_sts_pin ( solidswitch8_t *ctx );

Example Description

This example demonstrates the use of SolidSwitch 8 Click board by switching state of the switch.

The demo application is composed of two sections :

Application Init

Initializes the driver, performs the Click default configuration.


void application_init ( void ) 
{
    log_cfg_t log_cfg;  /**< Logger config object. */
    solidswitch8_cfg_t solidswitch8_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.
    solidswitch8_cfg_setup( &solidswitch8_cfg );
    SOLIDSWITCH8_MAP_MIKROBUS( solidswitch8_cfg, MIKROBUS_1 );
    if ( DIGITAL_OUT_UNSUPPORTED_PIN == solidswitch8_init( &solidswitch8, &solidswitch8_cfg ) ) 
    {
        log_error( &logger, " Communication init." );
        for ( ; ; );
    }

    solidswitch8_default_cfg ( &solidswitch8 );

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

Application Task

Switching state of the output every 5 seconds, and monitoring the status of the device.

void application_task ( void ) 
{
    if ( SOLIDSWITCH8_PIN_STATE_LOW == solidswitch8_get_sts_pin( &solidswitch8 ) )
    {
        solidswitch8_set_err_pin( &solidswitch8, SOLIDSWITCH8_PIN_STATE_HIGH );
        log_error( &logger, " Detected over temperature condition." );
        for ( ; ; );
    }

    log_printf( &logger, " Switch state closed. \r\n" );
    solidswitch8_set_in_pin( &solidswitch8, SOLIDSWITCH8_PIN_STATE_HIGH );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );

    log_printf( &logger, " Switch state open. \r\n" );
    solidswitch8_set_in_pin( &solidswitch8, SOLIDSWITCH8_PIN_STATE_LOW );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );
    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.SolidSwitch8

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

MP3 2 click

5

The MP3 2 Click is a Click boardâ„¢ that features the KT403A, a compact audio IC, from Shenzhen Qianle Microelectronics Technology Co. Ltd. This Click board provides a various audio file operations for an audio multiple formats file (MP3 and WAV).

[Learn More]

Flash 7 click

5

Flash 7 Click is a compact add-on board that contains a high-performance memory solution. This board features the GD25LQ16C, a high-performance 16Mbit SPI NOR Flash Memory solution with advanced security features from GigaDevice Semiconductor.

[Learn More]

DAC 2 Click

0

DAC 2 Click represents a 16-bit digital-to-analog converter.

[Learn More]