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 (137096 times)
  2. FAT32 Library (70236 times)
  3. Network Ethernet Library (56122 times)
  4. USB Device Library (46434 times)
  5. Network WiFi Library (42073 times)
  6. FT800 Library (41384 times)
  7. GSM click (29114 times)
  8. mikroSDK (26561 times)
  9. PID Library (26489 times)
  10. microSD click (25487 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: 2830 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

6LoWPAN clicker

0

6LoWPAN clicker is a compact development board with a mikroBUS socket for click board connectivity. It carries Microchip’s PIC32MX470F512H - 120 MHz/150 DMIPS, MIPS32® M4K® core microcontroller. And CA-8210 2.4GHz ISM band transceiver, which allows you to add wireless communication to your project.

[Learn More]

Pressure 4 click

5

Pressure 4 click is an absolute barometric pressure measurement Click board, which features a low power consumption, high precision barometric pressure sensor.

[Learn More]

DC MOTOR 7 click

0

DC MOTOR 7 click is a dual brushed DC motor driving Click board™, featuring the advanced PWM chopper-type integrated DC motor driver, labeled as TB67H400AFTG.

[Learn More]