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 (139059 times)
  2. FAT32 Library (71589 times)
  3. Network Ethernet Library (56988 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

AD-SWIO 2 click

Rating:

5

Author: MIKROE

Last Updated: 2020-04-14

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: ADC

Downloaded: 3113 times

Not followed.

License: MIT license  

AD-SWIO 2 Click is a Click board equipped with the AD74413R, from Analog Devices. The AD74413R is a quad-channel software configurable input/output solution for building and process control applications. The device provides a fully integrated single chip solution for input and output operation.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "AD-SWIO 2 click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "AD-SWIO 2 click" changes.

Do you want to report abuse regarding "AD-SWIO 2 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

AD-SWIO 2 click

AD-SWIO 2 click

Native view of the AD-SWIO 2 click board.

View full image
AD-SWIO 2 click

AD-SWIO 2 click

Front and back view of the AD-SWIO 2 click board.

View full image

Library Description

This library has ability to perform a full control of the AD-SWIO 2 Click board. This click can convert and measure voltage, current and resistance from 4 independent channels and 4 different diagnostics.

Key functions:

  • adswio2_err_t adswio2_generic_write( uint8_t reg_addr, uint16_t data_in ) - This function writes 16-bit data to the selected register.
  • adswio2_err_t adswio2_set_ch_func( uint8_t channel, uint8_t ch_func ) - This function allows user to modify the functionality of the selected channel.
  • adswio2_err_t adswio2_get_conv_results( uint8_t channel, uint16_t *data_out ) - This function allows user to get the converted results of the selected channel.

Examples description

The application is composed of three sections :

  • System Initialization - Initializes all necessary peripherals and pins used for this click. Also initializes uart console module.
  • Application Initialization - Performs a hardware reset of the click board and executes a default configuration which includes that channel A will be enabled to measure voltage input in the range from 0V to 10V, with 4k8 SPS sample rating. In this function also Silicon Revision ID will be checked.
  • Application Task - (code snippet) - Waits until data from the enabled channel is ready and then reads results of conversion for channel A and if response is ok, prints the results on the uart console.
void application_task( )
{
    adswio2_rdy = adswio2_status_pin_ready( );

    while ( adswio2_rdy == 0 )
    {
        adswio2_rdy = adswio2_status_pin_ready( );
    }
    
    adswio2_err = adswio2_get_conv_results( _ADSWIO2_SETUP_CONV_EN_CHA,
                                            &adswio2_ch_a );

    if ( adswio2_err == _ADSWIO2_ERR_STATUS_OK )
    {
        adswio2_res = adwdio2_ch_a;
        adswio2_res /= _ADSWIO2_RANGE_RESOLUTION;
        adswio2_res *= _ADSWIO2_RANGE_VOLT_MV;
        adswio2_ch_a = adswio2_res;
        
        WordToStr( adswio2_ch_a, adswio2_log );
        Ltrim( adswio2_log );
    
        mikrobus_logWrite( "* CH A converted result is ", _LOG_TEXT );
        mikrobus_logWrite( adswio2_log, _LOG_TEXT );
        mikrobus_logWrite( " mV", _LOG_LINE );
        Delay_ms( 100 );
    }
}

Additional Functions :

  • Application Default Handler - Used to send error report messages from click driver to initialized console module.

Other mikroE Libraries used in the example:

  • Conversions
  • C_String
  • SPI
  • 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

Programmable Relay Timers (PIC)

18

Build your own programmable timer relays using Ready for PIC, Keypad 4x4 board with EasyPull, RTC, Relay 4 and LCD 2x16 character display with adapter. Just load the demonstration project code and your device is ready to control 4 separate relays.

[Learn More]

5G NB IoT click

5

5G NB IoT Click is a Click boardâ„¢ based on Gemalto's Cinterion ENS22 NB-IoT Wireless Module platform that boosts highly efficient future 5G connectivity for the IoT.

[Learn More]

GNSS 17 Click

0

GNSS 17 Click is a compact add-on board for precise and reliable global navigation and positioning. This board features the M20071, an integrated full-function GNSS receiver module from Antenova, which features the MediaTek AG3335MN flash chip. This module can concurrently track multiple GNSS constellations, including GPS, GLONASS, GALILEO, BEIDOU, and QZSS, ensuring accurate positioning even in dense urban environments. It includes advanced features like multi-path algorithms for enhanced accuracy, a high-performance onboard LNA for weak-signal environments, and power-saving modes to optimize energy consumption.

[Learn More]