TOP Contributors

  1. MIKROE (2664 codes)
  2. Alcides Ramos (358 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 (137152 times)
  2. FAT32 Library (70288 times)
  3. Network Ethernet Library (56158 times)
  4. USB Device Library (46480 times)
  5. Network WiFi Library (42146 times)
  6. FT800 Library (41450 times)
  7. GSM click (29144 times)
  8. mikroSDK (26593 times)
  9. PID Library (26518 times)
  10. microSD click (25527 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

POWER MUX click

Rating:

5

Author: MIKROE

Last Updated: 2021-01-29

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: Power Switch

Downloaded: 1747 times

Not followed.

License: MIT license  

Power MUX Click features power multiplexer that enables transition between two power supplies (such as a battery and a wall adapter), each operating at 2.8V to 5.5V and delivering up to 2A current depending on the package.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "POWER MUX click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "POWER MUX click" changes.

Do you want to report abuse regarding "POWER MUX 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

Power MUX Click

Power MUX Click

Native view of the Power MUX Click board.

View full image
Power MUX Click

Power MUX Click

Front and back view of the Power MUX Click board.

View full image

Library Description

The library covers all the necessary functions to control POWER MUX click board. POWER MUX click communicates with the target board through the RST, PWM and INT line. This library offers functions for setting D0 and D1 pins or to use predefined output from input channel 1, output from input channel 2, automatic output channel selection and disable output settings.

Key functions:

  • void powermux_output_input_ch_1 ( ); - Function is used to set output from input channel 1.
  • void powermux_output_input_ch_2 ( ); - Function is used to set output from input channel 2.
  • void powermux_auto_sel_input_ch ( ); - Function is used to set automatic output channel selection.

Examples description

The application is composed of three sections :

  • System Initialization - Initializes GPIO and LOG structures, sets RST and PWM pins as input as output and INT pin as input.
  • Application Initialization - Enables GPIO and starts write log.
  • Application Task - (code snippet) This example demonstrates the use of POWER MUX click board by disabling output tor 2 seconds, then enabling output from channel 1 for 5 seconds then disabling output for 2 seconds again, and repeating for output from channel 2.
void application_task ( )
{
    mikrobus_logWrite( "No output", _LOG_LINE );
    powermux_no_output( );
    Delay_ms( 2000 );
    mikrobus_logWrite( "Output from input channel 1", _LOG_LINE );
    powermux_output_input_ch_1( );
    Delay_ms( 5000 );
    mikrobus_logWrite( "No output", _LOG_LINE );
    powermux_no_output( );
    Delay_ms( 2000 );
    mikrobus_logWrite( "Output from input channel 2", _LOG_LINE );
    powermux_output_input_ch_2( );
    Delay_ms( 5000 );
    mikrobus_logWrite( "No output", _LOG_LINE );
    powermux_no_output( );
    Delay_ms( 2000 );
    mikrobus_logWrite( "auto select output channel", _LOG_LINE );
    powermux_auto_sel_input_ch( );
    Delay_ms( 5000 );
}


Other mikroE Libraries used in the example:

  • 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

Bluetooth click

0

With the range up to a 100m and low power consumption, Bluetooth click is a great solution if you are looking for a simple way to integrate Bluetooth 2.1 communication to your device. It features the RN-41 low power, class 1 Bluetooth radio module. Bluetooth click communicates with the target board MCU through UART interface and is designed to run on 3.3V power supply only.

[Learn More]

USB UART 3 click

0

USB UART 3 click is a versatile and feature-rich USB to UART interface from Silicon Labs.

[Learn More]

Silent Step 2 click

0

Silent Step 2 Click is a compact add-on board that allows extremely smooth and silent operation of the connected motor. This board features the TMC2130, a high-performance two-phase stepper motor driver from Analog Devices. The driver uses an external motor power supply of 4.75 up to 43V to power a 2-phase stepper motor up to 2A coil current (2.5A peak).

[Learn More]