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 (139251 times)
  2. FAT32 Library (71747 times)
  3. Network Ethernet Library (57120 times)
  4. USB Device Library (47430 times)
  5. Network WiFi Library (43082 times)
  6. FT800 Library (42403 times)
  7. GSM click (29835 times)
  8. mikroSDK (28075 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

AMR Angle Click

Rating:

0

Author: MIKROE

Last Updated: 2024-10-31

Package Version: 2.1.0.16

mikroSDK Library: 2.0.0.0

Category: Magnetic

Downloaded: 168 times

Not followed.

License: MIT license  

AMR Angle Click is a compact add-on board containing an anisotropic magnetoresistive measurement solution ideal for either angle or linear position measurements.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "AMR Angle Click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "AMR Angle Click" changes.

Do you want to report abuse regarding "AMR Angle Click".

  • Information
  • Comments (0)

mikroSDK Library Blog


AMR Angle Click

AMR Angle Click is a compact add-on board containing an anisotropic magnetoresistive measurement solution ideal for either angle or linear position measurements. This board features the ADA4571, an AMR sensor with clean and amplified cosine and sine output signals related to a rotating magnetic field angle from Analog Devices.

amr_angle_click.png

Click Product page


Click library

  • Author : Stefan Nikolic
  • Date : jan 2021.
  • Type : SPI type

Software Support

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

Standard key functions :

  • amrangle_cfg_setup Config Object Initialization function.

    void amrangle_cfg_setup ( amrangle_cfg_t *cfg, uint8_t sel_toolchain );
  • amrangle_init Initialization function.

    AMRANGLE_RETVAL amrangle_init ( amrangle_t *ctx, amrangle_cfg_t *cfg );
  • amrangle_default_cfg Click Default Configuration function.

    void amrangle_default_cfg ( amrangle_t *ctx );

Example key functions :

  • amrangle_angle_read This function reads an angle in degrees.

    float amrangle_angle_read ( amrangle_t *ctx );
  • amrangle_read_vtp_temp This function returns calculated temperature using vtp pin voltage.

    float amrangle_read_vtp_temp ( amrangle_t *ctx );
  • amrangle_gain_control_mode This function sets the gain control mode pin which is used to compensate the sensor amplitude output for reduction of temperature variation.

    void amrangle_gain_control_mode ( amrangle_t *ctx, uint8_t gain_control );

Example Description

This demo application shows the performance of AMR Angle Click by reading and presenting the temperature and angle results on the UART log.

The demo application is composed of two sections :

Application Init

Starts up the UART LOG, SPI and ADC drivers. Performs the default settings like setting the adc vref, resolution and gpio pins.


void application_init ( void ) {
    log_cfg_t log_cfg;              /**< Logger config object. */
    amrangle_cfg_t amrangle_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.

    amrangle_cfg_setup( &amrangle_cfg, AMRANGLE_ARM_TOOLCHAIN );  // Change when switching profile
    AMRANGLE_MAP_MIKROBUS( amrangle_cfg, MIKROBUS_1 );
    err_t init_flag = amrangle_init( &amrangle, &amrangle_cfg );
    if ( init_flag == SPI_MASTER_ERROR ) {
        log_error( &logger, " Application Init Error. " );
        log_info( &logger, " Please, run program again... " );

        for ( ; ; );
    }

    amrangle_default_cfg( &amrangle );
    Delay_ms ( 500 );
    log_info( &logger, " Application Task " );
}

Application Task

The application task consists of reading the temperature and angle data from the sensor and sending that data to the UART log every second.


void application_task ( void ) {
    temperature_res = amrangle_read_vtp_temp( &amrangle );
    angle_res = amrangle_angle_read( &amrangle );
    log_printf( &logger, " Temperature: %.2f C\r\n", temperature_res );
    log_printf( &logger, " Angle: %.2f degrees\r\n", angle_res );
    log_printf( &logger, " --------------------------\r\n" );
    Delay_ms ( 1000 );
}

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

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

ADC12 click

10

ADC 12 Click is a compact add-on board that contains a fully-featured, general-purpose analog-to-digital converter. This board features the ADS7828, a low-power 12-bit data acquisition device that features a serial I2C interface and an 8-channel multiplexer from Texas Instruments.

[Learn More]

3D Motion click board - Example

1

3D Motion click carries Microchip’s MM7150 9-axis sensor fusion motion module. It’s a complete self contained solution comprising a 3-axis accelerometer, a gyroscope, a magnetometer, and a SSC7150 motion coprocessor. Example displays data acquired from the sensors on TFT display.

[Learn More]

LED Driver 17 Click

0

LED Driver 17 Click is a compact add-on board that offers a simple solution for controlling multiple LEDs, making it an ideal choice for various applications. This board features the LTR3755, a highly efficient DC/DC controller from Analog Devices that operates as a constant-current source. It can easily drive high current LEDs and features onboard low-side external N-channel power MOSFETs driven from an internal regulated supply. The LED Driver 17 Click is capable of stable operation over a wide supply range and offers several LED protection features, including overvoltage and overcurrent protection. Additionally, the frequency adjust pin allows users to program the switching frequency from 100kHz to 1MHz, optimizing efficiency and performance.

[Learn More]