TOP Contributors

  1. MIKROE (2650 codes)
  2. Alcides Ramos (350 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (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 (136554 times)
  2. FAT32 Library (69757 times)
  3. Network Ethernet Library (55855 times)
  4. USB Device Library (46195 times)
  5. Network WiFi Library (41816 times)
  6. FT800 Library (41010 times)
  7. GSM click (28931 times)
  8. PID Library (26386 times)
  9. mikroSDK (26297 times)
  10. microSD click (25304 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

ProxFusion 2 click

Rating:

5

Author: MIKROE

Last Updated: 2019-03-07

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: Capacitive

Downloaded: 2744 times

Not followed.

License: MIT license  

ProxFusion 2 Click is an ambient lighting, capacitive, Hall-effect, and inductive sensing Click board which features a single multifunctional sensor IC.

No Abuse Reported

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

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

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

ProxFusion 2 click

ProxFusion 2 click

Native view of the ProxFusion 2 click board.

View full image
ProxFusion 2 click

ProxFusion 2 click

Front and back view of the ProxFusion 2 click board.

View full image

Library Description

The library initializes and defines the I2C bus or SPI bus driver and drivers that offer a choice for writing data in register. The library includes function for read ambient light, hall-effect and temperature and function for detect touch. The user also has the function for initializes chip and configuration chip.

Key functions:

  • void proxfusion2_configuration() - Function for configuration chip
  • uint8_t proxfusion2_init() - Function for initializes chip
  • uint8_t proxfusion2_detectTouch() - Function for detect Touch
  • uint8_t proxfusion2_detectDark_Light(uint8_t *ALS_range) - Function for read ambient light
  • uint8_t proxfusion2_detectHall() - Function for read Hall-effect

Examples description

The application is composed of the three sections :

  • System Initialization - Initializes I2C module and sets INT pin as INPUT
  • Application Initialization - Initializes Driver init and configuraton and init chip
  • Application Task - (code snippet):
    1. Checks whether Touch is detected and measures the output detection.
    2. Measures Ambient lighting - whether it's Light or Dark, ALS range and ALS output.
    3. Checks the orientation of the magnet and measures the HALL output.
void applicationTask()
{
   mikrobus_logWrite("_________________________________________________________________________", _LOG_LINE);
   mikrobus_logWrite("| TOUCH  |  T - UI  | AMBIENT | ALS RANGE |  ALS UI  |  HALL  | HALL UI |",_LOG_LINE);
   
   // TOUCH
   Touch = proxfusion2_readByte(0x13);
   if ((Touch & 0x02) != 0)
   {
       mikrobus_logWrite("|  YES   |", _LOG_TEXT);
   }
   else
   {
       mikrobus_logWrite("|   NO   |", _LOG_TEXT);
   }
   dataRead = proxfusion2_readData( _PROXFUSION2_HYSTERESIS_UI_OUTPUT );
   IntToStr(dataRead, demoText);
   mikrobus_logWrite(demoText, _LOG_TEXT);
   mikrobus_logWrite("    |",_LOG_TEXT);

   // AMBIENT
   darkLight_ambient = proxfusion2_detectDark_Light(&ALS_range);
   if (darkLight_ambient == _PROXFUSION2_DARK_AMBIENT )
   {
       mikrobus_logWrite("  DARK   |",_LOG_TEXT);
   }
   else
   {
       mikrobus_logWrite(" LIGHT   |",_LOG_TEXT);
   }
   IntToStr(ALS_range, demoText);
   mikrobus_logWrite(demoText, _LOG_TEXT);
   mikrobus_logWrite("     |",_LOG_TEXT);

   dataRead = proxfusion2_readData( _PROXFUSION2_ALS_UI_OUTPUT );
   IntToStr(dataRead, demoText);
   mikrobus_logWrite(demoText, _LOG_TEXT);
   mikrobus_logWrite("    |",_LOG_TEXT);

   // HALL
   hall_detect = proxfusion2_detectHall();
   if (hall_detect != 0)
   {
       if( hall_detect == 1 )
       {
           mikrobus_logWrite(" NORTH  |",_LOG_TEXT);
       }
       else
       {
           mikrobus_logWrite(" SOUTH  |",_LOG_TEXT);
       }
   }
   dataRead = proxfusion2_readData( _PROXFUSION2_HALL_EFFECT_UI_OUTPUT );
   IntToStr(dataRead, demoText);
   mikrobus_logWrite(demoText, _LOG_TEXT);
   mikrobus_logWrite("   |",_LOG_LINE);
   Delay_ms(3000);
}

Other mikroE Libraries used in the example:

  • I2C
  • 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

IR Grid click

5

IR Grid click is a thermal imaging sensor. It has an array of 64 very sensitive factory calibrated IR elements (pixels), arranged in 4 rows of 16 pixels, each measuring an object temperature up to 300ËšC within its local Field of View (FOV).

[Learn More]

WIFI 7 click

1

WiFi 7 click carries the ATWINC1510-MR210PB IEEE 802.11 b/g/n module, specifically optimized for low-power IoT applications. The click is designed to run on a 3.3V power supply. It communicates with the target microcontroller over SPI interface.

[Learn More]

7seg click

0

7seg click is an accessory board in mikroBUS form factor. It’s a compact and easy solution for adding 2-digit seven-segment display to your device.

[Learn More]