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 (139257 times)
  2. FAT32 Library (71751 times)
  3. Network Ethernet Library (57123 times)
  4. USB Device Library (47430 times)
  5. Network WiFi Library (43082 times)
  6. FT800 Library (42404 times)
  7. GSM click (29835 times)
  8. mikroSDK (28078 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

I2C MUX 4 click

Rating:

5

Author: MIKROE

Last Updated: 2020-09-10

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: I2C

Downloaded: 1738 times

Not followed.

License: MIT license  

I2C MUX 4 Click is a compact add-on board that contains a dual bidirectional translating switch dedicated for applications with I2C slave address conflicts. This board features the TCA9543APWR, a low voltage 2-channel I2C bus switch with interrupt logic from Texas Instruments.

No Abuse Reported

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

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

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

I2C MUX 4 Click

I2C MUX 4 Click

Native view of the I2C MUX 4 Click board.

View full image
I2C MUX 4 Click

I2C MUX 4 Click

Front and back view of the I2C MUX 4 Click board.

View full image

Library Description

The library covers all the necessary functions to control I2C MUX 4 Click board. A library performs the communication with the TCA9543A Low Voltage 2-Channel I2C Bus Switch via I2C interface.

Key functions:

  • void i2cmux4_power_on ( uint8_t enable ) - Power On function.
  • void i2cmux4_set_channel ( uint8_t sel_ch, uint8_t ch_slave_addr ) - Set channel function.
  • uint8_t i2cmux4_check_int ( void ) - Check interrupt function.

Examples description

The application is composed of three sections :

  • System Initialization - Initializes I2C, set RST pin as output, INT pin as input and start to write log.
  • Application Initialization - Initialization driver enables - I2C, executes call power On and hardware reset, also write log.
  • Application Task - (code snippet) This is an example that demonstrates the use of the I2C MUX 4 Click board. In this example, we read "Who am I" ( or "State" ) register of the connected click boards to the I2C MUX 4 click. Channel 0 : 6DOF IMU 12 click [slave address: 0x0E; reg: 0x00; id val.: 0x24], Channel 1 : RTC 10 click [slave address: 0x68; reg: 0x0F; st val.: 0x88]. All data logs write on USB UART changes approximately every 2 sec.
void application_task ( )
{
    // CH 0 - 6DOF IMU 12 click
    i2cmux4_set_channel( I2CMUX4_SEL_CH_0, 0x68 );
    Delay_ms( 100 );

    i2cmux4_rmt_read_bytes( 0x00, &rx_data, 1 );
    Delay_ms( 100 );

    ByteToHex( rx_data, log_text );
    mikrobus_logWrite( "    6DOF IMU 12 click  ", _LOG_LINE );
    mikrobus_logWrite( "- - - - - - - - - - - -", _LOG_LINE );
    mikrobus_logWrite( "       ID = 0x", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_LINE );
    mikrobus_logWrite( "-----------------------", _LOG_LINE );
    Delay_ms( 1000 );
    
    
    // CH 1 - RTC 10 click
    i2cmux4_set_channel( I2CMUX4_SEL_CH_1, 0x68 );
    Delay_ms( 100 );

    i2cmux4_rmt_read_bytes( 0x0F, &rx_data, 1 );
    Delay_ms( 100 );

    ByteToHex( rx_data, log_text );
    mikrobus_logWrite( "      RTC 10 click     ", _LOG_LINE );
    mikrobus_logWrite( "- - - - - - - - - - - -", _LOG_LINE );
    mikrobus_logWrite( "       ID = 0x", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_LINE );
    mikrobus_logWrite( "-----------------------", _LOG_LINE );
    Delay_ms( 1000 );
}

Other mikroE Libraries used in the example:

  • I2C
  • UART
  • Conversions

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

POT 4 Click

0

POT 4 Click is a compact add-on board with accurate selectable reference voltage output. This board features the PRS11R-425F-S103B1, a high-quality 11mm rotary 10k potentiometer from Bourns. The PRS11R-425F-S103B1 features a small form factor, offers an push-on momentary switch, a flatted shaft style, and a wide operating temperature range. It comes with a high-resolution 12-bit ADC, detecting even the slightest move while digitizing its position, alongside a rail-to-rail buffering operational amplifier, which provides constant input and output impedance. Besides, the user can process the output signal in analog or digital form.

[Learn More]

Stepper 3 Click

0

Stepper 3 Click is designed to drive unipolar stepper motors, with a supply voltage applied to the common wire. The current flows through the common wire and the motor coil, via the activated current sink driver, to the ground. This Click board™ uses the ULN2003A, a high voltage and current Darlington transistors array IC, as the sink driver. This IC is an ideal solution for this purpose, as it has seven high power Darlington output stages, activated by TTL/CMOS logic level signals, applied to the control pins. This allows driving unipolar stepper motors with up to 30V and 500mA per coil.

[Learn More]

Color 7 Click

0

Color 7 Click is a very accurate color sensing Click board which features the TCS3472 color light to digital converter with IR filter, from ams.

[Learn More]