TOP Contributors

  1. MIKROE (2784 codes)
  2. Alcides Ramos (402 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (129 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 (140779 times)
  2. FAT32 Library (73368 times)
  3. Network Ethernet Library (58201 times)
  4. USB Device Library (48387 times)
  5. Network WiFi Library (43984 times)
  6. FT800 Library (43542 times)
  7. GSM click (30471 times)
  8. mikroSDK (29178 times)
  9. PID Library (27174 times)
  10. microSD click (26850 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 16 Click

Rating:

0

Author: MIKROE

Last Updated: 2024-10-31

Package Version: 2.1.0.6

mikroSDK Library: 2.0.0.0

Category: Port expander

Downloaded: 78 times

Not followed.

License: MIT license  

Expand 16 Click is a compact add-on board with a multi-port I/O expander. This board features the FLX6408, a fully configurable 8-bit GPIO expander from ON Semiconductor. It brings eight independently configurable input/output ports, with a 6mA output drive, when configured in the output mode.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "Expand 16 Click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "Expand 16 Click" changes.

Do you want to report abuse regarding "Expand 16 Click".

  • Information
  • Comments (0)

mikroSDK Library Blog


Expand 16 Click

Expand 16 Click is a compact add-on board with a multi-port I/O expander. This board features the FLX6408, a fully configurable 8-bit GPIO expander from ON Semiconductor. It brings eight independently configurable input/output ports, with a 6mA output drive, when configured in the output mode.

expand16_click.png

Click Product page


Click library

  • Author : Stefan Ilic
  • Date : Oct 2023.
  • Type : I2C type

Software Support

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

Standard key functions :

  • expand16_cfg_setup Config Object Initialization function.

    void expand16_cfg_setup ( expand16_cfg_t *cfg );
  • expand16_init Initialization function.

    err_t expand16_init ( expand16_t *ctx, expand16_cfg_t *cfg );
  • expand16_default_cfg Click Default Configuration function.

    err_t expand16_default_cfg ( expand16_t *ctx );

Example key functions :

  • expand16_write_reg Expand 16 register write function.

    err_t expand16_write_reg ( expand16_t *ctx, uint8_t reg, uint8_t data_in );
  • expand16_set_io_dir Expand 16 set pin input or output direction function.

    err_t expand16_set_io_dir ( expand16_t *ctx, uint8_t input_pins, uint8_t output_pins );
  • expand16_set_output_state Expand 16 set output pins state function.

    err_t expand16_set_output_state ( expand16_t *ctx, uint8_t clr_mask, uint8_t set_mask );

Example Description

This example demonstrates the use of Expand 16 Click board by setting and reading the ports state.

The demo application is composed of two sections :

Application Init

Initializes the driver and performs the Click default configuration which sets half of the pins as output ( GPIO4, GPIO5, GPIO6 and GPIO7 ) and the other half of the pins as inputs ( GPIO0, GPIO1, GPIO2 and GPIO3 ).


void application_init ( void ) 
{
    log_cfg_t log_cfg;              /**< Logger config object. */
    expand16_cfg_t expand16_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.
    expand16_cfg_setup( &expand16_cfg );
    EXPAND16_MAP_MIKROBUS( expand16_cfg, MIKROBUS_1 );
    if ( I2C_MASTER_ERROR == expand16_init( &expand16, &expand16_cfg ) ) 
    {
        log_error( &logger, " Communication init." );
        for ( ; ; );
    }

    uint8_t dev_id = 0;
    expand16_read_reg( &expand16, EXPAND16_REG_DEV_ID_AND_CTRL, &dev_id ); 
    if ( EXPAND16_DEVICE_ID != ( dev_id & EXPAND16_DEVICE_ID_MASK ) )
    {
        log_error( &logger, " Communication error." );
        for ( ; ; );
    }

    if ( EXPAND16_ERROR == expand16_default_cfg ( &expand16 ) )
    {
        log_error( &logger, " Default configuration." );
        for ( ; ; );
    }

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

Application Task

Sets the state of the output pins and then reads the status of input pins and displays the results on the USB UART approximately 2 seconds.

void application_task ( void ) 
{
    uint8_t tmp_data = 0;

    log_printf( &logger, "Output pins state: HIGH \r\n" );
    log_printf( &logger, "- - - - - - - - - - - - -\r\n" );
    expand16_set_output_state( &expand16, EXPAND16_PIN_MASK_NONE, EXPAND16_PIN_MASK_GPIO_4 | 
                                          EXPAND16_PIN_MASK_GPIO_5 | EXPAND16_PIN_MASK_GPIO_6 | 
                                          EXPAND16_PIN_MASK_GPIO_7 );
    expand16_read_reg( &expand16, EXPAND16_REG_INPUT_STATE, &tmp_data ); 
    show_input_pin_state( tmp_data );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );

    log_printf( &logger, "Output pins state: LOW \r\n" );
    log_printf( &logger, "- - - - - - - - - - - - -\r\n" );
    expand16_set_output_state( &expand16, EXPAND16_PIN_MASK_GPIO_4 | EXPAND16_PIN_MASK_GPIO_5 | 
                                          EXPAND16_PIN_MASK_GPIO_6 | EXPAND16_PIN_MASK_GPIO_7, 
                                          EXPAND16_PIN_MASK_NONE );
    expand16_read_reg( &expand16, EXPAND16_REG_INPUT_STATE, &tmp_data ); 
    show_input_pin_state( tmp_data );
    Delay_ms ( 1000 );
    Delay_ms ( 1000 );
}

Note

In order for this example to work as intended it is necessary to connect the input and output pins eg. GPIO0 and GPIO4, GPIO1 and GPIO5 etc. Floating input pins will be shown as a low state.

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.Expand16

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

LR 11 915MHz Click

0

LR 11 Click - 915MHz is a compact add-on board for long-range, low-power wireless communication in IoT applications. This board features the 453-00139R, an ultra-low power LoraWAN module Ezurio (part of the RM126x series), integrating the Silicon Labs EFR32 SoC and the Semtech SX1262 radio. It supports LoRaWAN classes A, B, and C, offering secure, scalable, and bi-directional communication. It operates in the 902-928MHz frequency range with a typical transmit power of up to 22dBm and a communication range of up to 15km.

[Learn More]

LYRA 24P Click

0

LYRA 24P Click is a compact add-on board for high-performance wireless connectivity in IoT devices running on Bluetooth. This board features the LYRA 24P (453-00145R), a secure high-performance wireless module from Ezurio. It features a 32-bit ARM® Cortex®-M33 core at 39MHz, Bluetooth® Low Energy (BLE) 5.3 connectivity, and industry-leading Secure Vault® technology for enhanced security and future-proofing. The module supports 2.4GHz wireless connectivity with a built-in antenna and offers global regulatory certifications.

[Learn More]

PS/2 click

5

Simple demonstration of using PS/2 communication protocol. Example detects keyboard press and writes the corresponding key on UART.

[Learn More]