# Title: PROFET -15A Click Board™ ## Description: How Does The PROFET -15A Click Board™ Work? The PROFET -15A Click Board™ as its foundation uses the BTS70041EPPXUMA1, a single-channel, smart high-side power switch with embedded protection and diagnosis feature from Infineon Technologies. The BTS70041EPPXUMA1 has a driving capability suitable for 15A loads and comes equipped with "ReverseON" functionality which causes the power transistor to switch on in case of reverse polarity. It also offers outstanding energy efficiency with reduced current consumption, state-of-art current sense accuracy, and faster switching/slew rate with no impact on EMC, making it suitable for resistive, inductive, and capacitive loads, replacement of electromechanical relays, fuses, and discrete circuits, and many more. The PROFET -15A Click Board™ uses three digital pins for direct control. The input pin marked as IN routed to the PWM pin of the mikroBUS™ socket activates the corresponding output channel labelled VOUT. Also, the Diagnosis Enable (DEN) pin routed to the CS pin of the mikroBUS™ socket controls the diagnosis and protection circuitry, and in combination with IN pins, it enables the selection of appropriate operating states: Sleep, Stand-by, and Active Mode. The BTS70041EPPXUMA1 is protected against overtemperature, overload, reverse power supply (GND and VIN are reverse supplied), and overvoltage. Overtemperature and overload protection work when the device is not in Sleep mode, while overvoltage protection works in all operation modes. For diagnosis purposes, the BTS70041EPPXUMA1 provides a combination of digital and analogue signals at the AN pin of the mikroBUS™ socket. The PROFET -15A Click Board™ supports an external power supply for the BTS70041EPPXUMA1, which can be connected to the input terminal labelled as VIN and should be within the range of 4.1V to 28V. VIN has an under-voltage detection circuit, which prevents the activation of the power output stages and diagnosis if the applied voltage is below the under-voltage threshold. A power supply indication, red LED labelled as VIN, indicates the presence of an external power supply. The PROFET -15A Click Board™ can be operated only with a 3.3V logic voltage level. The board must perform appropriate logic voltage level conversion before use with MCUs with different logic levels. However, the Click board™ comes equipped with a library containing functions and an example code that can be used, as a reference, for further development. SPECIFICATIONS Type Power Switch Applications Can be used for resistive, inductive, and capacitive loads, replaces electromechanical relays, fuses and discrete circuits, and many more On-board modules BTS70041EPPXUMA1 - single-channel, smart high-side power switch with embedded protection and diagnosis feature from Infineon Technologies Key Features High-side switch with diagnosis and embedded protection, reverseON for low power dissipation in reverse polarity, UVLO/OVLO, wide external power supply range with LED indication, and more Interface Analog,GPIO Compatibility mikroBUS Click board size L (57.15 x 25.4 mm) Input Voltage 3.3V,External PINOUT DIAGRAM This table shows how the pinout on the PROFET -15A Click Board™ corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns). Notes Pin Pin Notes Diagnosis Signal AN 1 AN PWM 16 IN Output Channel Activation NC 2 RST INT 15 NC Diagnosis Enable DEN 3 CS RX 14 NC NC 4 SCK TX 13 NC NC 5 MISO SCL 12 NC NC 6 MOSI SDA 11 NC Power Supply 3.3V 7 3.3V 5V 10 NC Ground GND 8 GND GND 9 GND Ground ONBOARD SETTINGS AND INDICATORS Label Name Default Description LD1 PWR - Power LED Indicator LD2 VIN - External Power Supply LED Indicator PROFET CLICK - 15A ELECTRICAL SPECIFICATIONS Description Min Typ Max Unit Supply Voltage VCC - 3.3 - V External Supply Voltage VIN 4.1 - 28 V Output Current - - 15 A ON Resistance - - 8 mΩ Operating Temperature Range -40 +25 +150 °C ## Product type: Click Board ## Vendor: Mikroelektronika d.o.o. ## Tags: Click Board, Infineon Technologies, MikroE, Power Management, Power Switch ## Price range: 14.0 - 14.0 GBP ## Link: https://thedebugstore.com/products/mikroe-4701-profet-15a-click-board-uk ## Compare-at price range: 20.0 - 20.0 GBP ## Options - Title: Default Title ## Collections - [New Products](https://thedebugstore.com/a/llms/collections/new-products-debug-store) - [Mikroelektronika d.o.o. (MikroE)](https://thedebugstore.com/a/llms/collections/mikroelektronika-catalogue-uk) - [Infineon Device Support: Development Boards & Tools for Microcontrollers & Sensors](https://thedebugstore.com/a/llms/collections/infineon-device-support) - [Power Management Click Boards™](https://thedebugstore.com/a/llms/collections/power-management-click-boards-catalogue) - [MikroE Click Boards™](https://thedebugstore.com/a/llms/collections/mikroe-click-boards-catalogue-uk) - [Power Switch Click Boards™](https://thedebugstore.com/a/llms/collections/power-switch-click-boards-catalogue) - [Click Boards™ Summer Sale](https://thedebugstore.com/a/llms/collections/inventory-sale) - [MikroE Sale](https://thedebugstore.com/a/llms/collections/mikroe-sale) - [MIKROE Stock](https://thedebugstore.com/a/llms/collections/mikroe-products-in-stock-sale) ## Variants - Default Title, SKU: MIKROE-4701, Available: yes, Inventory: 1 ## Metafields - attachments: [{"download_file":[{"download_file":"PROFET™ -15A Click Board™ Schematic"}],"download_filetype":[{"download_filetype":"pdf"}]},{"download_file":[{"download_file":"Infineon BTS70041EPPXUMA1 Power Switch Datasheet"}],"download_filetype":[{"download_filetype":"pdf"}]}] - examples:

We provide a library for the PROFET -15A Click Board™ as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

The package can be downloaded/installed directly from NECTO Studio Package Manager (recommended), downloaded from our LibStock™ or found on Mikroe GitHub account.

Library Description

This library contains an API for the PROFET Click driver.

Key functions

Example Description

This example showcases the ability of the PROFET -15A Click Board™. It configures Host MCU for communication and then enables and disables the output channel. Besides that, it reads the voltage of IS pin and calculates the current on output.


 void application_task ( void ) 
 { 
     static uint8_t mode = PROFET_DIAGNOSTIC_ON; 
     float profet_an_voltage = 0; 

     profet_set_mode( &profet, mode ); 

     if ( PROFET_DIAGNOSTIC_ON == profet.mode ) 
     { 
         mode = PROFET_MODE_OFF; 
         log_printf( &logger, " > Output ON diagnostic modern" ); 
         Delay_ms( 2000 ); 
     } 
     else 
     { 
         mode = PROFET_DIAGNOSTIC_ON; 
         log_printf( &logger, " > Output OFFrn" ); 
     } 

     if ( profet_read_an_pin_voltage ( &profet, &profet_an_voltage ) != ADC_ERROR ) 
     { 
         log_printf( &logger, " > IS Voltage t~ %.3f[V]rn", profet_an_voltage ); 

         float current = profet_an_voltage * profet.kilis / profet.rsens; 
         log_printf( &logger, " > OUT Current t~ %.3f[A]rn", current ); 
     }   

     log_printf( &logger, "*******************************************rn" ); 

     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 Information

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

MIKROSDK

The PROFET -15A 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.

- description_tag: The PROFET -15A Click Board™ is a compact add-on board that contains a smart high-side power switch. This board features the BTS70041EPPXUMA1, a single-channel, high-side power switch with embedded protection and diagnosis feature from Infineon Technologies. Available from Debug Store UK. - title_tag: MikroE PROFET™ -15A Click Board™ (MIKROE-4701) - badge: - widget:

Customer Reviews

Be the first to write a review
0%
(0)
0%
(0)
0%
(0)
0%
(0)
0%
(0)
- backorder_label: If no stock shown above, check availability - full_description:

How Does The PROFET -15A Click Board™ Work?

The PROFET -15A Click Board™ as its foundation uses the BTS70041EPPXUMA1, a single-channel, smart high-side power switch with embedded protection and diagnosis feature from Infineon Technologies. The BTS70041EPPXUMA1 has a driving capability suitable for 15A loads and comes equipped with "ReverseON" functionality which causes the power transistor to switch on in case of reverse polarity. It also offers outstanding energy efficiency with reduced current consumption, state-of-art current sense accuracy, and faster switching/slew rate with no impact on EMC, making it suitable for resistive, inductive, and capacitive loads, replacement of electromechanical relays, fuses, and discrete circuits, and many more.

Profet 15A Click inner

The PROFET -15A Click Board™ uses three digital pins for direct control. The input pin marked as IN routed to the PWM pin of the mikroBUS™ socket activates the corresponding output channel labelled VOUT. Also, the Diagnosis Enable (DEN) pin routed to the CS pin of the mikroBUS™ socket controls the diagnosis and protection circuitry, and in combination with IN pins, it enables the selection of appropriate operating states: Sleep, Stand-by, and Active Mode.

The BTS70041EPPXUMA1 is protected against overtemperature, overload, reverse power supply (GND and VIN are reverse supplied), and overvoltage. Overtemperature and overload protection work when the device is not in Sleep mode, while overvoltage protection works in all operation modes. For diagnosis purposes, the BTS70041EPPXUMA1 provides a combination of digital and analogue signals at the AN pin of the mikroBUS™ socket.

The PROFET -15A Click Board™ supports an external power supply for the BTS70041EPPXUMA1, which can be connected to the input terminal labelled as VIN and should be within the range of 4.1V to 28V. VIN has an under-voltage detection circuit, which prevents the activation of the power output stages and diagnosis if the applied voltage is below the under-voltage threshold. A power supply indication, red LED labelled as VIN, indicates the presence of an external power supply.

The PROFET -15A Click Board™ can be operated only with a 3.3V logic voltage level. The board must perform appropriate logic voltage level conversion before use with MCUs with different logic levels. However, the Click board™ comes equipped with a library containing functions and an example code that can be used, as a reference, for further development.

SPECIFICATIONS

Type Power Switch
Applications Can be used for resistive, inductive, and capacitive loads, replaces electromechanical relays, fuses and discrete circuits, and many more
On-board modules BTS70041EPPXUMA1 - single-channel, smart high-side power switch with embedded protection and diagnosis feature from Infineon Technologies
Key Features High-side switch with diagnosis and embedded protection, reverseON for low power dissipation in reverse polarity, UVLO/OVLO, wide external power supply range with LED indication, and more
Interface Analog,GPIO
Compatibility mikroBUS
Click board size L (57.15 x 25.4 mm)
Input Voltage 3.3V,External

PINOUT DIAGRAM

This table shows how the pinout on the PROFET -15A Click Board™ corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).

Notes Pin Mikrobus logo.png Pin Notes
Diagnosis Signal AN 1 AN PWM 16 IN Output Channel Activation
NC 2 RST INT 15 NC
Diagnosis Enable DEN 3 CS RX 14 NC
NC 4 SCK TX 13 NC
NC 5 MISO SCL 12 NC
NC 6 MOSI SDA 11 NC
Power Supply 3.3V 7 3.3V 5V 10 NC
Ground GND 8 GND GND 9 GND Ground

ONBOARD SETTINGS AND INDICATORS

Label Name Default  Description
LD1 PWR - Power LED Indicator
LD2 VIN - External Power Supply LED Indicator

PROFET CLICK - 15A ELECTRICAL SPECIFICATIONS

Description Min Typ Max Unit
Supply Voltage VCC - 3.3 - V
External Supply Voltage VIN 4.1 - 28 V
Output Current - - 15 A
ON Resistance - - 8
Operating Temperature Range -40 +25 +150 °C

 

- manufacturer: Mikroelektronika d.o.o. - warranty: 12 months - condition: new - custom_product: false - mpn: MIKROE-4701 - google_product_category: Electronics - custom_label_0: Click Board - mpn: MIKROE-4701 - device_vendor: Infineon Technologies - device_type: BCR 320U E6327, BTS70041EPPXUMA1 - warranty: 12 months - brand: MikroE - manufacturer: Mikroelektronika d.o.o. - target_keyword: PROFET -15A Click Board - brands: gid://shopify/Metaobject/56256004319 - breadcrumbs: ["gid://shopify/Collection/447955239135","gid://shopify/Collection/241680580797","gid://shopify/Collection/241545478333"] - customhs_code: 847330 - detailed_description: {"type":"root","children":[{"type":"heading","level":3,"children":[{"type":"text","value":"How Does The PROFET -15A Click Board™ Work?"}]},{"type":"paragraph","children":[{"type":"text","value":"The "},{"type":"text","value":"PROFET -15A Click Board™","bold":true,"italic":true},{"type":"text","value":" as its foundation uses the BTS70041EPPXUMA1, a single-channel, smart high-side power switch with embedded protection and diagnosis feature from Infineon Technologies. The BTS70041EPPXUMA1 has a driving capability suitable for 15A loads and comes equipped with \"ReverseON\" functionality which causes the power transistor to switch on in case of reverse polarity. It also offers outstanding energy efficiency with reduced current consumption, state-of-art current sense accuracy, and faster switching/slew rate with no impact on EMC, making it suitable for resistive, inductive, and capacitive loads, replacement of electromechanical relays, fuses, and discrete circuits, and many more."}]},{"type":"paragraph","children":[{"type":"text","value":""}]},{"type":"paragraph","children":[{"type":"text","value":"The "},{"type":"text","value":"PROFET -15A Click Board™","bold":true},{"type":"text","value":" uses three digital pins for direct control. The input pin marked as IN routed to the PWM pin of the mikroBUS™ socket activates the corresponding output channel labelled VOUT. Also, the Diagnosis Enable (DEN) pin routed to the CS pin of the mikroBUS™ socket controls the diagnosis and protection circuitry, and in combination with IN pins, it enables the selection of appropriate operating states: Sleep, Stand-by, and Active Mode."}]},{"type":"paragraph","children":[{"type":"text","value":"The BTS70041EPPXUMA1 is protected against overtemperature, overload, reverse power supply (GND and VIN are reverse supplied), and overvoltage. Overtemperature and overload protection work when the device is not in Sleep mode, while overvoltage protection works in all operation modes. For diagnosis purposes, the BTS70041EPPXUMA1 provides a combination of digital and analogue signals at the AN pin of the mikroBUS™ socket."}]},{"type":"paragraph","children":[{"type":"text","value":"The "},{"type":"text","value":"PROFET -15A Click Board™","bold":true},{"type":"text","value":" supports an external power supply for the BTS70041EPPXUMA1, which can be connected to the input terminal labelled as VIN and should be within the range of 4.1V to 28V. VIN has an under-voltage detection circuit, which prevents the activation of the power output stages and diagnosis if the applied voltage is below the under-voltage threshold. A power supply indication, red LED labelled as VIN, indicates the presence of an external power supply."}]},{"type":"paragraph","children":[{"type":"text","value":"The "},{"type":"text","value":"PROFET -15A Click Board™","bold":true},{"type":"text","value":" can be operated only with a 3.3V logic voltage level. The board must perform appropriate logic voltage level conversion before use with MCUs with different logic levels. However, the Click board™ comes equipped with a library containing functions and an example code that can be used, as a reference, for further development."}]},{"type":"heading","level":3,"children":[{"type":"text","value":"SPECIFICATIONS"}]},{"type":"paragraph","children":[{"type":"text","value":"Type\nPower Switch\nApplications\nCan be used for resistive, inductive, and capacitive loads, replaces electromechanical relays, fuses and discrete circuits, and many more\nOn-board modules\nBTS70041EPPXUMA1 - single-channel, smart high-side power switch with embedded protection and diagnosis feature from Infineon Technologies\nKey Features\nHigh-side switch with diagnosis and embedded protection, reverseON for low power dissipation in reverse polarity, UVLO/OVLO, wide external power supply range with LED indication, and more\nInterface\nAnalog,GPIO\nCompatibility\nmikroBUS\nClick board size\nL (57.15 x 25.4 mm)\nInput Voltage\n3.3V,External"}]},{"type":"heading","level":3,"children":[{"type":"text","value":"PINOUT DIAGRAM"}]},{"type":"paragraph","children":[{"type":"text","value":"This table shows how the pinout on the "},{"type":"text","value":"PROFET -15A Click Board™","bold":true},{"type":"text","value":" corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns)."}]},{"type":"paragraph","children":[{"type":"text","value":"Notes\nPin\nPin\nNotes\nDiagnosis Signal\nAN\n1\nAN\nPWM\n16\nIN\nOutput Channel Activation\nNC\n2\nRST\nINT\n15\nNC\nDiagnosis Enable\nDEN\n3\nCS\nRX\n14\nNC\nNC\n4\nSCK\nTX\n13\nNC\nNC\n5\nMISO\nSCL\n12\nNC\nNC\n6\nMOSI\nSDA\n11\nNC\nPower Supply\n3.3V\n7\n3.3V\n5V\n10\nNC\nGround\nGND\n8\nGND\nGND\n9\nGND\nGround"}]},{"type":"heading","level":3,"children":[{"type":"text","value":"ONBOARD SETTINGS AND INDICATORS"}]},{"type":"paragraph","children":[{"type":"text","value":"Label\nName\nDefault\n Description\nLD1\nPWR\n-\nPower LED Indicator\nLD2\nVIN\n-\nExternal Power Supply LED Indicator"}]},{"type":"heading","level":3,"children":[{"type":"text","value":"PROFET CLICK - 15A ELECTRICAL SPECIFICATIONS"}]},{"type":"paragraph","children":[{"type":"text","value":"Description\nMin\nTyp\nMax\nUnit\nSupply Voltage VCC\n-\n3.3\n-\nV\nExternal Supply Voltage VIN\n4.1\n-\n28\nV\nOutput Current\n-\n-\n15\nA\nON Resistance\n-\n-\n8\nmΩ\nOperating Temperature Range\n-40\n+25\n+150\n°C"}]},{"type":"heading","level":3,"children":[{"type":"text","value":" "}]}]} - summary:

The PROFET -15A Click Board™ is a compact add-on board that contains a smart high-side power switch. This board features the BTS70041EPPXUMA1, a single-channel, high-side power switch with embedded protection and diagnosis feature from Infineon Technologies. This switch has a driving capability suitable for 15A loads featuring a ReverSave™, which causes the power transistor to switch on in case of reverse polarity. Besides its protection features, it also has pin-configurable diagnosis features such as proportional load current sense, open Load in ON and OFF state, and short circuit to ground and battery.

The PROFET -15A Click Board™ is suitable for resistive, inductive, and capacitive loads, replaces electromechanical relays, fuses and discrete circuits, and many more.