Carte à clic ProxFusion 3
Carte à clic ProxFusion 3
Le Le ProxFusion 3 Click Board™ est une carte complémentaire compacte représentant un Click Board™ tactile multifonctionnel. Cette carte est équipée de l'IQS2692A, un contrôleur tactile et de proximité capacitif ProxFusion® à 8 canaux avec détection supplémentaire telle que la détection Hall et inductive d'Azoteq. Cet IQS2692A peut détecter le toucher en utilisant huit capteurs intégrés permettant l'installation de la couche de verre acrylique protectrice sur eux et offrant une solution tactile capacitive intégrée avec une grande flexibilité, une détection combinée unique et une stabilité à long terme. Ce Click Board™ convient aux applications de proximité et tactiles haut de gamme et offre une détection fiable et précise pour toute application qui utilise des fonctions de détection tactile capacitive.
Le Click Board ProxFusion 3™ est pris en charge par une bibliothèque compatible mikroSDK, qui comprend des fonctions qui simplifient le développement logiciel. Cette Click Board™ est un produit entièrement testé, prêt à être utilisé sur un système équipé du socket mikroBUS™.
How Does The ProxFusion 3 Click Board™ Work?
The ProxFusion 3 Click Board™ is based on the IQS269A, an eight-channel ProxFusion® capacitive, proximity, and touch controller with additional Hall-effect and inductive sensing, best in class signal-to-noise ratio, and low power consumption from Azoteq. The ProxFusion® module detects the capacitance changed with a charge-transfer method. In effect, the IQS269A represents a low-power microcontroller that features ProxFusion® technology for high-end proximity and touch applications and provides a highly integrated capacitive-touch solution with flexibility, unique combination sensing, and long-term stability. During low power mode, the ProxFusion® module can periodically wake the CPU based on a ProxFusion® timer source. Other features include automatic tuning and differential offset compensation for sense electrodes.
The Click board™ has eight PCB pads used to sense touch or proximity events. These pads are the only elements on the top side of the board, allowing the placement of the protective acrylic plexiglass layer. These pads can be programmed to generate a touch event for both when they are pressed and released. If a touch event is detected on one of the onboard pads, the state of the corresponding channel will be changed, indicating an activated channel, more precisely, touch has been detected on that specific channel.
ProxFusion 3 Click communicates with MCU using a standard two-wire I2C interface that supports Fast Mode with a frequency of up to 400kHz. In addition to these pins, the IQS269A has a ready interrupt line, routed on the INT pin of the mikroBUS™ socket, that indicates a communication window, and one general-purpose pin labelled as GP and routed on the PWM pin of the mikroBUS™ socket. The GP pin represents a custom touch-out/sync-in function with which one can assign a touch flag state of any channel. Besides, also allows the choice of the least significant bit (LSB) of its I2C slave address by positioning the SMD jumper labelled as ADDR SEL to an appropriate position marked as 0 and 1.
This Click board™ is designed to be operated only with a 3.3V logic voltage level. A proper logic voltage level conversion should be performed before the Click board™ is used with MCUs with different logic levels. However, the Click board™ comes equipped with a library that contains functions and an example code that can be used, as a reference, for further development.
SPECIFICATIONS
Type | Capacitive |
Applications | Can be used for high-end proximity and touch applications and offers reliable and accurate sensing for any application that uses capacitive touch sensing functions. |
On-board modules | IQS269A - eight-channel ProxFusion® capacitive, proximity, and touch controller with additional Hall-effect and inductive sensing, best in class signal-to-noise ratio, and low power consumption from Azoteq |
Key Features | Low power consumption, highly flexible 8 sensor pads, internal Hall sensor, a wide range of capacitance detection, best in class sensitivity and signal-to-noise ratio, and more. |
Interface | I2C |
Compatibility | mikroBUS |
Click board size | L (57.15 x 25.4 mm) |
Input Voltage | 3.3V |
PINOUT DIAGRAM
This table shows how the pinout on ProxFusion 3 Click corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).
Notes | Pin | Pin | Notes | ||||
---|---|---|---|---|---|---|---|
NC | 1 | AN | PWM | 16 | GP | Touch-Out/Sync-In | |
NC | 2 | RST | INT | 15 | INT | Interrupt | |
NC | 3 | CS | RX | 14 | NC | ||
NC | 4 | SCK | TX | 13 | NC | ||
NC | 5 | MISO | SCL | 12 | SCL | I2C Clock | |
NC | 6 | MOSI | SDA | 11 | SDA | I2C Data | |
Power Supply | 3.3V | 7 | 3.3V | 5V | 10 | NC | |
Ground | GND | 8 | GND | GND | 9 | GND | Ground |
ONBOARD SETTINGS AND INDICATORS
Label | Name | Default | Description |
---|---|---|---|
LD1 | PWR | - | Power LED Indicator |
JP1 | ADDR SEL | Right | I2C Address Selection 0/1: Left position 0, Right position 1 |
PROXFUSION 3 CLICK ELECTRICAL SPECIFICATIONS
Description | Min | Typ | Max | Unit |
---|---|---|---|---|
Supply Voltage | - | 3.3 | - | V |
Capacitance Detection Range | - | - | 200 | pF |
Operating Temperature Range | -40 | +25 | +85 | °C |
Software Support
We provide a library for the ProxFusion 3 Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
The package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on the mikroE Github account.
Library Description
This library contains API for ProxFusion 3 Click driver.
Key Functions
void proxfusion3_cfg_setup ( proxfusion3_cfg_t *cfg );
- Config Object Initialization function.PROXFUSION3_RETVAL proxfusion3_init ( proxfusion3_t *ctx, proxfusion3_cfg_t *cfg );
- Initialization function.void proxfusion3_default_cfg ( proxfusion3_t *ctx );
- Click Default Configuration function.
Example Description
Display information about the last detected touch.
The demo application is composed of two sections :
void application_task ( void ) { if ( proxfusion3_check_touch_event( &proxfusion3 ) == PROXFUSION3_EVENT_TOUCH ) { uint8_t touch_data = proxfusion3_get_touch( &proxfusion3 ); Delay_ms( 100 ); switch ( touch_data ) { case PROXFUSION3_TOUCH_POS_8: { log_printf( &logger, " >>> 8 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_7: { log_printf( &logger, " >>> 7 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_6: { log_printf( &logger, " >>> 6 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_5: { log_printf( &logger, " >>> 5 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_4: { log_printf( &logger, " >>> 4 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_3: { log_printf( &logger, " >>> 3 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_2: { log_printf( &logger, " >>> 2 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_1: { log_printf( &logger, " >>> 1 <<< rn" ); break; } default: { Delay_ms( 10 ); break; } } Delay_ms( 10 ); } else { Delay_ms( 10 ); } }
The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on mikroE Github account.
Other mikroE Libraries used in the example:
- MikroSDK.Board
- MikroSDK.Log
- Click.ProxFusion3
Additional Notes and Information
Depending on the development board you are using, you may need a USB UART click, USB 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.
MIKROSDK
This Click board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
Software Support
We provide a library for the ProxFusion 3 Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
The package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on the mikroE Github account.
Library Description
This library contains API for ProxFusion 3 Click driver.
Key Functions
void proxfusion3_cfg_setup ( proxfusion3_cfg_t *cfg );
- Config Object Initialization function.PROXFUSION3_RETVAL proxfusion3_init ( proxfusion3_t *ctx, proxfusion3_cfg_t *cfg );
- Initialization function.void proxfusion3_default_cfg ( proxfusion3_t *ctx );
- Click Default Configuration function.
Example Description
Display information about the last detected touch.
The demo application is composed of two sections :
void application_task ( void ) { if ( proxfusion3_check_touch_event( &proxfusion3 ) == PROXFUSION3_EVENT_TOUCH ) { uint8_t touch_data = proxfusion3_get_touch( &proxfusion3 ); Delay_ms( 100 ); switch ( touch_data ) { case PROXFUSION3_TOUCH_POS_8: { log_printf( &logger, " >>> 8 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_7: { log_printf( &logger, " >>> 7 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_6: { log_printf( &logger, " >>> 6 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_5: { log_printf( &logger, " >>> 5 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_4: { log_printf( &logger, " >>> 4 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_3: { log_printf( &logger, " >>> 3 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_2: { log_printf( &logger, " >>> 2 <<< rn" ); break; } case PROXFUSION3_TOUCH_POS_1: { log_printf( &logger, " >>> 1 <<< rn" ); break; } default: { Delay_ms( 10 ); break; } } Delay_ms( 10 ); } else { Delay_ms( 10 ); } }
The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on mikroE Github account.
Other mikroE Libraries used in the example:
- MikroSDK.Board
- MikroSDK.Log
- Click.ProxFusion3
Additional Notes and Information
Depending on the development board you are using, you may need a USB UART click, USB 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.
MIKROSDK
This Click board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
Carte à clic ProxFusion 3
Frequently Asked Questions
Have a Question?
Be the first to ask a question about this.