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]
Rating:
Author: MIKROE
Last Updated: 2019-10-04
Package Version: 1.0.0.0
mikroSDK Library: 1.0.0.0
Category: Capacitive
Downloaded: 3511 times
Not followed.
License: MIT license
Power/Reset Click is equipped with two capacitive touch pads on a single click boardâ„¢. It can be activated by touch, and unlike the mechanical button, the capacitive touch button lasts much longer, it is not prone to damage and wear over time and it is very reliable.
Library Description
This library allows user to check which button is pressed or activated. Also initializes GPIO driver. For more details check documentation.
Key functions:
void touchbutt_gpioDriverInit(T_TOUCHBUTT_P gpioObj)
- This function initializes GPIO driver.T_TOUCHBUTT_STATE touchbutt_getPWR( void )
- This function returns a state of the PWR pin (ON/OFF button).T_TOUCHBUTT_STATE touchbutt_getRST( void )
- This function returns a state of the RST pin (RESET button).Examples description
The application is composed of three sections :
void applicationTask()
{
pwr_state = touchbutt_getPWR();
rst_state = touchbutt_getRST();
if ((pwr_state == _TOUCHBUTT_ACTIVE) && (time_cnt_prev != time_cnt) && (rst_state == _TOUCHBUTT_INACTIVE))
{
time_val_dec = time_cnt / 10;
time_val_real = time_cnt % 10;
LongWordToStr( time_val_dec, text );
Ltrim( text );
mikrobus_logWrite( text, _LOG_TEXT );
mikrobus_logWrite( ".", _LOG_TEXT );
ByteToStr( time_val_real, text );
Ltrim( text );
mikrobus_logWrite( text, _LOG_LINE );
if ((time_val_dec >= target_time) && (alarm_flag == _TOUCHBUTT_ACTIVE))
{
mikrobus_logWrite( "** Target time is reached! **", _LOG_LINE );
alarm_flag = _TOUCHBUTT_INACTIVE;
Sound_Play( 1000, 50 );
Delay_ms( 40 );
Sound_Play( 1000, 50 );
Delay_ms( 40 );
}
}
if (rst_state == _TOUCHBUTT_ACTIVE)
{
time_cnt = 0;
alarm_flag = _TOUCHBUTT_ACTIVE;
}
else
{
time_cnt_prev = time_cnt;
}
}
The full application code, and ready to use projects can be found on our LibStock page.
Other mikroE Libraries used in the example:
Additional notes and informations
Depending on the development board you are using, you may need 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.
ADC3 click carries Microchip’s MCP3428 16-bit multichannel analog-to-digital converter. The click has four pairs of screw terminals onboard, letting you access the chip’s four differential input channels. ADC3 click communicates with the target MCU through mikroBUS I2C pins (SCL, SDA). It is designed to use either a 3.3V or 5V power supply.
[Learn More]Hall Switch Click is a magnetic field activated dual-relay Click board™.
[Learn More]Thermo 22 Click is a compact add-on board that provides an accurate temperature measurement. This board features the TMP75C, a high-precision digital temperature sensor from Texas Instruments. The TMP75C houses an integrated digital temperature sensor with a 12-bit analog-to-digital converter (ADC), a reference circuit, and serial interface logic functions in one package. Characterized by its high accuracy (up to ±0.25°C typical) and high resolution of 0.0625°C, this temperature sensor provides temperature data to the host controller with a configurable I2C interface. This Click board™ is appropriate for thermal management and protection of various consumer, industrial, and environmental applications.
[Learn More]You have unsaved changes. If you choose to leave all changes will be discarded.
Do you want to subscribe in order to receive notifications regarding "Power/Reset click" changes.
Do you want to unsubscribe in order to stop receiving notifications regarding "Power/Reset click" changes.
Do you want to report abuse regarding "Power/Reset click".