TOP Contributors

  1. MIKROE (2751 codes)
  2. Alcides Ramos (372 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 (139060 times)
  2. FAT32 Library (71592 times)
  3. Network Ethernet Library (56989 times)
  4. USB Device Library (47330 times)
  5. Network WiFi Library (43006 times)
  6. FT800 Library (42297 times)
  7. GSM click (29777 times)
  8. mikroSDK (27874 times)
  9. PID Library (26858 times)
  10. microSD click (26129 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

EXPAND 5 click

Rating:

5

Author: MIKROE

Last Updated: 2020-07-21

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: Port expander

Downloaded: 2157 times

Not followed.

License: MIT license  

EXPAND 5 Click features a low-voltage 24-bit I2C and SMBus I/O expander. This 24-bit I/O expander is designed to provide general-purpose remote I/O expansion for most microcontroller families via the I2C serial interface.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "EXPAND 5 click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "EXPAND 5 click" changes.

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

EXPAND 5 Click

EXPAND 5 Click

Native view of the EXPAND 5 Click board.

View full image
EXPAND 5 Click

EXPAND 5 Click

Front and back view of the EXPAND 5 Click board.

View full image

Library Description

The library covers necessary functions that enables the usage of the EXPAND 5 click board. User can configure polarity and direction of every pin and get or set state of each and every pin.

Key functions:

  • void expand5_set_all_dir( uint8_t bank0, uint8_t bank1, uint8_t bank2 ); - Function is used to set pins' direction ( I/O ) setting in all banks.
  • void expand5_write_pin ( uint16_t pin, uint8_t pin_val ); - Function is used to set a single output pin's logic level.
  • void expand5_write_all_banks ( uint8_t bank0, uint8_t bank1, uint8_t bank2 ); - Function is used to set logic levels in all banks.

Examples description

The application is composed of three sections :

  • System Initialization - Initializes I2C module, LOG structure and sets RST pin as output and INT pin as input.
  • Application Initialization - Initalizes I2C driver, resets the device, configures all pins as output and makes an initial log.
  • Application Task - (code snippet) This example shows the capabilities of the EXPAND 5 click by toggling each of 24 available pins.
void application_task ( )
{
    for ( pin_num = EXPAND5_P00; pin_num <= EXPAND5_P27; pin_num++ )
    {
        expand5_write_all_banks ( bank_low, bank_low, bank_low );
        expand5_write_pin ( pin_num, EXPAND5_HIGH );
        mikrobus_logWrite( "Pin ", _LOG_TEXT );
        ByteToStr( pin_num, log_txt );
        Ltrim( log_txt );
        mikrobus_logWrite( log_txt, _LOG_TEXT );
        mikrobus_logWrite( " is high!", _LOG_LINE );

        Delay_ms( 100 );
        expand5_write_all_banks ( bank_low, bank_low, bank_low );
    }
    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.

Library Description

The library covers necessary functions that enables the usage of the EXPAND 5 click board. User can configure polarity and direction of every pin and get or set state of each and every pin.

Key functions:

  • void expand5_set_all_dir( uint8_t bank0, uint8_t bank1, uint8_t bank2 ); - Function is used to set pins' direction ( I/O ) setting in all banks.
  • void expand5_write_pin ( uint16_t pin, uint8_t pin_val ); - Function is used to set a single output pin's logic level.
  • void expand5_write_all_banks ( uint8_t bank0, uint8_t bank1, uint8_t bank2 ); - Function is used to set logic levels in all banks.

Examples description

The application is composed of three sections :

  • System Initialization - Initializes I2C module, LOG structure and sets RST pin as output and INT pin as input.
  • Application Initialization - Initalizes I2C driver, resets the device, configures all pins as output and makes an initial log.
  • Application Task - (code snippet) This example shows the capabilities of the EXPAND 5 click by toggling each of 24 available pins.
void application_task ( )
{
    for ( pin_num = EXPAND5_P00; pin_num <= EXPAND5_P27; pin_num++ )
    {
        expand5_write_all_banks ( bank_low, bank_low, bank_low );
        expand5_write_pin ( pin_num, EXPAND5_HIGH );
        mikrobus_logWrite( "Pin ", _LOG_TEXT );
        ByteToStr( pin_num, log_txt );
        Ltrim( log_txt );
        mikrobus_logWrite( log_txt, _LOG_TEXT );
        mikrobus_logWrite( " is high!", _LOG_LINE );

        Delay_ms( 100 );
        expand5_write_all_banks ( bank_low, bank_low, bank_low );
    }
    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

IPS Display Click

0

IPS Display Click is a compact add-on board that displays high-resolution graphics in embedded applications. This board features the ER-TFT1.14-2, a 1.14inch TFT LCD display from BuyDisplay, part of EastRising Technology, and utilizes the ST7789V controller for 262K color output. The display offers a 135x240 pixel resolution, operates through a 3-wire SPI interface, and includes additional control lines such as RST and RS for precise display management. Its small form factor and high-resolution output make it suitable for various projects, including handheld devices, smart displays, and control panels requiring clear visual output.

[Learn More]

LTE Cat.1 3 NAX Click

0

LTE Cat.1 3 Click (for North America) is a compact add-on board for reliable 4G wireless communication. This board features the EG91NAXDGA-128-SGNS, an LTE Cat 1 IoT data-only module that meets the 3GPP Release 11 standard from Quectel. It supports multiple wireless standards, including LTE-FDD and WCDMA, ensuring broad network compatibility. Key features include multi-band LTE support (B2/B4/B5/B12/B13/B25/B26), RX diversity for bands B2, B4, and B5, and multi-constellation GNSS (GPS, GLONASS, BeiDou/Compass, Galileo, QZSS). It also integrates a 16-bit mono audio codec for voice functionality with support for CTIA standard headphones.

[Learn More]

DIGI POT 11 Click

0

DIGI POT 11 Click is a compact add-on board representing a digitally controlled potentiometer. This board features a double pack of the MAX5387, a dual, 256-tap, volatile, low-voltage linear taper digital potentiometer from Analog Devices. This way, four digitally I2C-controlled potentiometers are realized with end-to-end resistance values of 50kΩ. Operating from a single +3.3V power supply, this device provides a low 35ppm/ºC end-to-end temperature coefficient.

[Learn More]