TOP Contributors

  1. MIKROE (2663 codes)
  2. Alcides Ramos (358 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 (137084 times)
  2. FAT32 Library (70227 times)
  3. Network Ethernet Library (56097 times)
  4. USB Device Library (46427 times)
  5. Network WiFi Library (42042 times)
  6. FT800 Library (41382 times)
  7. GSM click (29110 times)
  8. mikroSDK (26558 times)
  9. PID Library (26487 times)
  10. microSD click (25486 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: 2826 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

BLE 7 click

0

The BLE 7 click is a Click board™ witch provide BT/BLE connectivity for any embedded application. BLE 7 click based on the BGX13S22GA-V31, a SiP module from Silicon Labs with a buit-in antenna. Click board™ an ultra-small, high-performing, Bluetooth low energy module for easy integration of Bluetooth low energy connectivity (BLE) into various electronic devices. Given its features, this click can be used for health, sports, and wellness devices as well as Industrial, home, and building automation; and smart phone, tablet, and PC accessories.

[Learn More]

Thermo 8 click

5

Thermo 8 click is a very accurate thermometer Click board, with a very high typical measurement accuracy of ±0.25°C, and great data repeatability of ±0.0625°C. Besides measuring the temperature, this Click board offers a set of very useful features, such as the thermostat function, interrupt event and critical temperature alert function.

[Learn More]

Color 8 click

0

Color 8 click is a color-sensing Click board™, a part of our sensor Click board™ line. Sensing the color by utilizing ROHM’s BH1749NUC, an integrated color sensor IC, it comes in the package which also includes the mikroSDK™ software, a library with all the functions.

[Learn More]