Our new website is available at new.dizzy.co.za :-).

X
+27 (0)11 022 5323 +27 (0)64 681 8495
Basket/Checkout
R
- -
MagnifierSearch:
Angle click (Go to Parent Category)

Angle click Angle click is a precise Hall-effect angle sensing click board that can be used to measure the rotational angle of the magnetic field in the X-Y plane above it (parallel to the surface of the click), through the whole range of 360°. The click yields very precise results for both off-axis and axis operation, which make it a perfect choice for precise measuring of the rotational angle in a wide range of different high-speed applications, for example in the automotive industry: electronic power steering, transmission, torsion bar, or the motor shaft rotation. Angle click features the A1335 Hall-effect angle sensing IC, made by Allegro MicroSystems LLC. This IC measures the magnetic field angular vector, based on the actual physical reading of the integrated Hall-effect sensor, as well as the user selected parameters, such as the digital filtering, dynamic range and scaling. The integrated 32bit MCU ensures that the processed data is delivered with a minimal delay and it has enough power to provide the complex processing of the input values so that the measurement remains fast, precise and linear.
On SpecialOn SpecialOn Special R240  R340  Qty:
Price ex. VAT. Weight: 23g. Stock: 1 available immediately [i]. mikroE Icon

Angle click is a precise Hall-effect angle sensing click board that can be used to measure the rotational angle of the magnetic field in the X-Y plane above it (parallel to the surface of the click), through the whole range of 360°. The click yields very precise results for both off-axis and axis operation, which make it a perfect choice for precise measuring of the rotational angle in a wide range of different high-speed applications, for example in the automotive industry: electronic power steering, transmission, torsion bar, or the motor shaft rotation.

Angle click features the A1335 Hall-effect angle sensing IC, made by Allegro MicroSystems LLC. This IC measures the magnetic field angular vector, based on the actual physical reading of the integrated Hall-effect sensor, as well as the user selected parameters, such as the digital filtering, dynamic range and scaling. The integrated 32bit MCU ensures that the processed data is delivered with a minimal delay and it has enough power to provide the complex processing of the input values so that the measurement remains fast, precise and linear.

How does it work?

Angle click carries the A1335 Hall-effect angle sensing IC, which is actually a SoC architecture type of integrated circuit. It features a Circular Vertical Hall (CVH) technology, a high-speed sampling AD converter, MCU for the data processing and the section used for the I2C/SPI communication. Besides the SRAM registers which can be accessed by the I2C or the SPI, the IC features an EEPROM memory, used to permanently store configuration data. The device comes pre-programmed with the factory default register values, so it can properly operate in most cases. The detailed instructions on how to program the EEPROM memory can be found in the A1335 programming manual.

The rotation of the magnetic field is detected by the CVH sensor. This sensor detects the magnetic field presence by utilizing the effect the magnetic fields produces to the electron flow within the sensor, while the current flows through it - the Hall effect. The signal from the sensor is then digitized by the AD converter and handed to the digital front end of the IC. The digitalized signal is preconditioned, processed through the bandpass filter and the raw value of the angle is calculated. The value is then forwarded to the MCU unit. It is submitted to various steps of processing, depending on the register values set by the user. The more processing is done by the MCU, the less responsive the reading will be. MCU can perform several types of resource-demanding processing. Some of the algorithms that can be applied to the raw signal are:

  • Angle averaging - the data is collected and averaged, depending on the selected output rate.
  • IIR Filtering - the multi ordered filter can be applied to the raw values, with the selectable coefficient
  • Gain Offset and Gain Adjust - allows setting the gain adjusting for a better resolution and zeroing out the raw rotation value.
  • Angle Clamping - useful when rotation is less than 360°, this will limit the output values to the clamping ones.
  • Harmonic Linearization - used to apply a user-defined error correction to the angle value.

These are just some of the options that can be set. The A1335 datasheet contains a detailed description for all of these functions. The required settings can be set via the registers and then used for the optimal measurement profile. The click can use either SPI or I2C for the communication. This can be set by the SMD jumpers. More about jumpers setting can be found in the Onboard settings and indicators table, below.

Specifications

Type Hall effect,Magnetic
Applications Electronic power steering, torsion bar, digital potentiometer, and other applications requiring high speed 360º angle measurement
On-board modules A1335 contactless magnetic angle position sensor
Key Features 360º contactless high-resolution angle position sensor. Onboard EEPROM for storing calibration data. 32 microseconds refresh rate. Works both in on-axis and off-axis applications
Interface I2C,SPI
Input Voltage 3.3V or 5V
Click board size M (42.9 x 25.4 mm)

Pinout diagram

This table shows how the pinout on Angle click corresponds to the pinout on the mikroBUSâ„¢ socket (the latter shown in the two middle columns).

NotesPin Mikrobus logo.pngPinNotes
NC 1 AN PWM 16 NC
NC 2 RST INT 15 NC
Chip Select CS 3 CS TX 14 NC
SPI Clock SCK 4 SCK RX 13 NC
SPI Data Output SDO 5 MISO SCL 12 SCL I2C Clock
SPI Data Input SDI 6 MOSI SDA 11 SDA I2C Data
Power Supply +3V3 7 3.3V 5V 10 +5V Power Supply
Ground GND 8 GND GND 9 GND Ground

Onboard settings and indicators

LabelNameDefaultDescription
LD1 PWR -
Power LED indicator, green
JP1 COMM SEL Left I2C/SPI selection: left position I2C, right position SPI
JP2 COMM SEL Left SDA/MISO selection: left position SDA, right position MISO
JP3 COMM SEL Left SCL/SCK selection: left position SCL, right position SCK
JP4 ADDR SEL Left I2C Slave Address Select bit 0: left position '0', right position '1'
JP5 ADDR SEL Left I2C Slave Address Select bit 1: left position '0', right position '1'
JP6 COMM SEL Left SA0/CS selection: left position SA0, right position CS
JP7 COMM SEL Left SA1/MOSI selection: left position SA1, right position MOSI

Note:
The click is set to I2C by default, with the Slave Address Selection bits (ADDR SEL) set to '0'. To select the SPI, all the COMM SEL jumpers have to be set to the right position. The ADDR SEL bits are disregarded in that case.

Software support

We provide a library for Angle click on our LibStock page, as well as a demo application (example), developed using MikroElektronika compilers and mikroSDK. The provided click library is mikroSDK standard compliant. The demo application can run on all the main MikroElektronika development boards.

Library description

Key functions:

uint16_t angle_getAngle()- Read angle

uint16_t angle_getTemperature()- Read temperature

vuint16_t angle_getMagnetics()- Read magnetics

Example description

The application is composed of three sections:

  • System Initialization - Initializes I2C module and UART for logging
  • Application Initialization - Driver initialization and angle sensing mode
  • Application Task - (code snippet) - Reads encoded angle in degrees and magnetic data in gauss
void applicationTask()
{
    Angle = angle_getAngle();
    IntToStr(Angle,txt);
    mikrobus_logWrite("Angle :",_LOG_TEXT);
    mikrobus_logWrite(txt,_LOG_LINE);

    Magnetics = angle_getMagnetics();
    IntToStr(Magnetics,txt);
    mikrobus_logWrite("Magnetics :",_LOG_TEXT);
    mikrobus_logWrite(txt,_LOG_LINE);
    Delay_1sec();
}

The full application code, and ready to use projects can be found on our LibStock page.
MikroElektronika libraries used in the example:

  • I2C
  • UART
  • Conversions

mikroSDK

This click board is supported with mikroSDK, the MikroElektronika Software Development Kit. To download mikroSDK visit LibStock. For more information about SDK, visit the official page.

Downloads