TOP Contributors

  1. MIKROE (2693 codes)
  2. Alcides Ramos (362 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 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 (137949 times)
  2. FAT32 Library (70758 times)
  3. Network Ethernet Library (56443 times)
  4. USB Device Library (46825 times)
  5. Network WiFi Library (42586 times)
  6. FT800 Library (41785 times)
  7. GSM click (29468 times)
  8. mikroSDK (27020 times)
  9. PID Library (26661 times)
  10. microSD click (25797 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

Gaussmeter click

Rating:

5

Author: MIKROE

Last Updated: 2018-07-18

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: Magnetic

Downloaded: 4574 times

Not followed.

License: MIT license  

Gaussmeter click is a device that is used for measuring the magnetic field in X, Y and Z axes. This Click board features the MLX90393, a micropower magnetometer based on the proprietary Triaxis technology, from Melexis. It can detect the magnetic field down to 0.8 µT (8 mG) thanks to this technology.

No Abuse Reported

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

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

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

Gaussmeter click

Gaussmeter click

Native view of the Gaussmeter click board.

View full image
Gaussmeter click

Gaussmeter click

Front and back view of the Gaussmeter clik board.

View full image

Library Description

Library initializes and defines I2C and SPI driver and has the ability to write to registers and read from registers by both driver communication. Library also performs magnetic field measurement via x, y and/or z-axis and converts results to µT. The library can measure 16-bit temperature value. For more details check the documentation.

Key functions 

void gaussmeter_enableMeasure( uint8_t zAxis, uint8_t yAxis, uint8_t xAxis, uint8_t temp ) - Function determines which axis will be included in the measurement.

uint8_t gaussmeter_sendCommand( uint8_t command_ ) - Function performs desired command.

uint8_t gaussmeter_readReg( uint8_t register_address, uint16_t *dataOut ) - Function reads 16-bit data from a register.

uint8_t gaussmeter_writeReg( uint8_t register_address, uint16_t transfer_data ) - Function writes 16-bit data in a register.

uint8_t gaussmeter_getData( uint32_t *dataOut ) - Function gets selected measured data.

Examples Description
The application is composed of three sections :

System Initialization - Initializes peripherals and pins.
Application Initialization - Initializes I2C or SPI driver and performs click configuration.
The device is configured to work in Wake Up On Change mode.
Application Task - (code snippet) - Gets x, y and z-axis measured data (without temperature) in µT.
Logs the desired results on USBUART and repeats measurements every 400ms.

 

void applicationTask()
{
 errorBit = gaussmeter_getData( &bufferData[ 0 ] );

 if (!errorBit)
 {
 axisCheck = 1;
 indx = 0;

 for (counter = 0; counter < 4; counter++)
 {
 switch (commandByteLow & axisCheck)
 {
 case 1 : 
 {
 mikrobus_logWrite( "16-bit temperature value is: ", _LOG_TEXT );
 LongWordToStr( bufferData[ indx ], text );
 mikrobus_logWrite( text, _LOG_LINE );
 indx++;
 break;
 }
 case 2 : 
 {
 mikrobus_logWrite( "X axis is: ", _LOG_TEXT );
 LongWordToStr( bufferData[ indx ], text );
 mikrobus_logWrite( text, _LOG_TEXT );
 mikrobus_logWrite( "microT", _LOG_LINE );
 indx++;
 break;
 }
 case 4 : 
 {
 mikrobus_logWrite( "Y axis is: ", _LOG_TEXT );
 LongWordToStr( bufferData[ indx ], text );
 mikrobus_logWrite( text, _LOG_TEXT );
 mikrobus_logWrite( "microT", _LOG_LINE );
 indx++;
 break;
 }
 case 8 : 
 {
 mikrobus_logWrite( "Z axis is: ", _LOG_TEXT );
 LongWordToStr( bufferData[ indx ], text );
 mikrobus_logWrite( text, _LOG_TEXT );
 mikrobus_logWrite( "microT", _LOG_LINE );
 indx++;
 break;
 }
 default :
 {
 break;
 }
 }

 axisCheck <<= 1;
 }
 mikrobus_logWrite( "", _LOG_LINE );
 Delay_ms( 400 );
 }
}


Other mikroE Libraries used in the example:

  • Conversions
  • I2C
  • SPI
  • UART

Additional notes and information

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

6DOF IMU 18 click

0

6DOF IMU 18 Click is a compact add-on board with a 6-axis inertial measurement unit. This board features the ICM-42605, a high-performance 6-axis MotionTracking™ IMU from TDK InvenSense.

[Learn More]

UV 2 click

2

UV 2 click is a mikroBUS add-on board with a VEML6075 UVA and UVB light sensor. With UV 2 click, Solar ultraviolet light intensity is converted to 16-bit digital values. The board communicates with the target MCU through the mikroBUS I2C interface. Designed to use a 3.3 power supply only.

[Learn More]

EVC click

0

EVC Click is a six-channel digital volume controller, equipped with an integrated electronic volume control circuit, which can be controlled over the I2C interface.

[Learn More]