mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
356 lines
13 KiB
C
356 lines
13 KiB
C
/* Touch Pad Interrupt Example
|
|
|
|
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
|
|
Unless required by applicable law or agreed to in writing, this
|
|
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
CONDITIONS OF ANY KIND, either express or implied.
|
|
*/
|
|
#include <stdio.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "freertos/queue.h"
|
|
#include "esp_log.h"
|
|
|
|
#include "driver/touch_pad.h"
|
|
#include "soc/rtc_periph.h"
|
|
#include "soc/sens_periph.h"
|
|
|
|
static const char* TAG = "Touch pad";
|
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
#define TOUCH_THRESH_NO_USE (0)
|
|
#define TOUCH_THRESH_PERCENT (80)
|
|
#define TOUCHPAD_FILTER_TOUCH_PERIOD (10)
|
|
|
|
static bool s_pad_activated[TOUCH_PAD_MAX];
|
|
static uint32_t s_pad_init_val[TOUCH_PAD_MAX];
|
|
|
|
/*
|
|
Read values sensed at all available touch pads.
|
|
Use 2 / 3 of read value as the threshold
|
|
to trigger interrupt when the pad is touched.
|
|
Note: this routine demonstrates a simple way
|
|
to configure activation threshold for the touch pads.
|
|
Do not touch any pads when this routine
|
|
is running (on application start).
|
|
*/
|
|
static void tp_example_set_thresholds(void)
|
|
{
|
|
uint16_t touch_value;
|
|
for (int i = 0; i<TOUCH_PAD_MAX; i++) {
|
|
//read filtered value
|
|
touch_pad_read_filtered(i, &touch_value);
|
|
s_pad_init_val[i] = touch_value;
|
|
ESP_LOGI(TAG, "test init: touch pad [%d] val is %d", i, touch_value);
|
|
//set interrupt threshold.
|
|
ESP_ERROR_CHECK(touch_pad_set_thresh(i, touch_value * 2 / 3));
|
|
|
|
}
|
|
}
|
|
|
|
/*
|
|
Check if any of touch pads has been activated
|
|
by reading a table updated by rtc_intr()
|
|
If so, then print it out on a serial monitor.
|
|
Clear related entry in the table afterwards
|
|
|
|
In interrupt mode, the table is updated in touch ISR.
|
|
|
|
In filter mode, we will compare the current filtered value with the initial one.
|
|
If the current filtered value is less than 80% of the initial value, we can
|
|
regard it as a 'touched' event.
|
|
When calling touch_pad_init, a timer will be started to run the filter.
|
|
This mode is designed for the situation that the pad is covered
|
|
by a 2-or-3-mm-thick medium, usually glass or plastic.
|
|
The difference caused by a 'touch' action could be very small, but we can still use
|
|
filter mode to detect a 'touch' event.
|
|
*/
|
|
static void tp_example_read_task(void *pvParameter)
|
|
{
|
|
static int show_message;
|
|
int change_mode = 0;
|
|
int filter_mode = 0;
|
|
while (1) {
|
|
if (filter_mode == 0) {
|
|
//interrupt mode, enable touch interrupt
|
|
touch_pad_intr_enable();
|
|
for (int i = 0; i < TOUCH_PAD_MAX; i++) {
|
|
if (s_pad_activated[i] == true) {
|
|
ESP_LOGI(TAG, "T%d activated!", i);
|
|
// Wait a while for the pad being released
|
|
vTaskDelay(200 / portTICK_PERIOD_MS);
|
|
// Clear information on pad activation
|
|
s_pad_activated[i] = false;
|
|
// Reset the counter triggering a message
|
|
// that application is running
|
|
show_message = 1;
|
|
}
|
|
}
|
|
} else {
|
|
//filter mode, disable touch interrupt
|
|
touch_pad_intr_disable();
|
|
touch_pad_clear_status();
|
|
for (int i = 0; i < TOUCH_PAD_MAX; i++) {
|
|
uint16_t value = 0;
|
|
touch_pad_read_filtered(i, &value);
|
|
if (value < s_pad_init_val[i] * TOUCH_THRESH_PERCENT / 100) {
|
|
ESP_LOGI(TAG, "T%d activated!", i);
|
|
ESP_LOGI(TAG, "value: %d; init val: %d", value, s_pad_init_val[i]);
|
|
vTaskDelay(200 / portTICK_PERIOD_MS);
|
|
// Reset the counter to stop changing mode.
|
|
change_mode = 1;
|
|
show_message = 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
vTaskDelay(10 / portTICK_PERIOD_MS);
|
|
|
|
// If no pad is touched, every couple of seconds, show a message
|
|
// that application is running
|
|
if (show_message++ % 500 == 0) {
|
|
ESP_LOGI(TAG, "Waiting for any pad being touched...");
|
|
}
|
|
// Change mode if no pad is touched for a long time.
|
|
// We can compare the two different mode.
|
|
if (change_mode++ % 2000 == 0) {
|
|
filter_mode = !filter_mode;
|
|
ESP_LOGW(TAG, "Change mode...%s", filter_mode == 0? "interrupt mode": "filter mode");
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
Handle an interrupt triggered when a pad is touched.
|
|
Recognize what pad has been touched and save it in a table.
|
|
*/
|
|
static void tp_example_rtc_intr(void * arg)
|
|
{
|
|
uint32_t pad_intr = touch_pad_get_status();
|
|
//clear interrupt
|
|
touch_pad_clear_status();
|
|
for (int i = 0; i < TOUCH_PAD_MAX; i++) {
|
|
if ((pad_intr >> i) & 0x01) {
|
|
s_pad_activated[i] = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Before reading touch pad, we need to initialize the RTC IO.
|
|
*/
|
|
static void tp_example_touch_pad_init()
|
|
{
|
|
for (int i = 0;i< TOUCH_PAD_MAX;i++) {
|
|
//init RTC IO and mode for touch pad.
|
|
touch_pad_config(i, TOUCH_THRESH_NO_USE);
|
|
}
|
|
}
|
|
|
|
void app_main()
|
|
{
|
|
// Initialize touch pad peripheral, it will start a timer to run a filter
|
|
ESP_LOGI(TAG, "Initializing touch pad");
|
|
touch_pad_init();
|
|
// If use interrupt trigger mode, should set touch sensor FSM mode at 'TOUCH_FSM_MODE_TIMER'.
|
|
touch_pad_set_fsm_mode(TOUCH_FSM_MODE_TIMER);
|
|
// Set reference voltage for charging/discharging
|
|
// For most usage scenarios, we recommend using the following combination:
|
|
// the high reference valtage will be 2.7V - 1V = 1.7V, The low reference voltage will be 0.5V.
|
|
touch_pad_set_voltage(TOUCH_HVOLT_2V7, TOUCH_LVOLT_0V5, TOUCH_HVOLT_ATTEN_1V);
|
|
// Init touch pad IO
|
|
tp_example_touch_pad_init();
|
|
// Initialize and start a software filter to detect slight change of capacitance.
|
|
touch_pad_filter_start(TOUCHPAD_FILTER_TOUCH_PERIOD);
|
|
// Set thresh hold
|
|
tp_example_set_thresholds();
|
|
// Register touch interrupt ISR
|
|
touch_pad_isr_register(tp_example_rtc_intr, NULL);
|
|
// Start a task to show what pads have been touched
|
|
xTaskCreate(&tp_example_read_task, "touch_pad_read_task", 2048, NULL, 5, NULL);
|
|
}
|
|
#elif CONFIG_IDF_TARGET_ESP32S2BETA
|
|
|
|
static QueueHandle_t que_touch = NULL;
|
|
typedef struct touch_msg {
|
|
touch_pad_intr_mask_t intr_mask;
|
|
uint32_t pad_num;
|
|
uint32_t pad_status;
|
|
uint32_t pad_val;
|
|
}touch_event_t;
|
|
|
|
#define TOUCH_BUTTON_NUM 4
|
|
#define TOUCH_BUTTON_WATERPROOF_ENABLE 1
|
|
#define TOUCH_BUTTON_DENOISE_ENABLE 1
|
|
|
|
static const touch_pad_t button[TOUCH_BUTTON_NUM] = {
|
|
TOUCH_PAD_NUM7, // 'SELECT' button.
|
|
TOUCH_PAD_NUM9, // 'MENU' button.
|
|
TOUCH_PAD_NUM11, // 'BACK' button.
|
|
TOUCH_PAD_NUM13, // Guard ring for waterproof design.
|
|
// if this pad be touched, other pads no response.
|
|
};
|
|
|
|
/*
|
|
* Touch threshold. The threshold determines the sensitivity of the touch.
|
|
* This threshold is derived by testing changes in readings from different touch channels.
|
|
* If (raw_data - baseline) > baseline * threshold, the pad be actived.
|
|
* If (raw_data - baseline) < baseline * threshold, the pad be inactived.
|
|
*/
|
|
static const float button_threshold[TOUCH_BUTTON_NUM] = {
|
|
0.2, // 20%.
|
|
0.2, // 20%.
|
|
0.2, // 20%.
|
|
0.1, // 10%.
|
|
};
|
|
|
|
/*
|
|
Handle an interrupt triggered when a pad is touched.
|
|
Recognize what pad has been touched and save it in a table.
|
|
*/
|
|
static void touchsensor_interrupt_cb(void * arg)
|
|
{
|
|
int task_awoken = pdFALSE;
|
|
touch_event_t evt;
|
|
|
|
evt.intr_mask = touch_pad_get_int_status();
|
|
evt.pad_status = touch_pad_get_status();
|
|
evt.pad_num = touch_pad_get_scan_curr();
|
|
|
|
if(evt.intr_mask & TOUCH_PAD_INTR_MASK_DONE) {
|
|
touch_pad_filter_baseline_read(evt.pad_num, &evt.pad_val);
|
|
}
|
|
xQueueSendFromISR(que_touch, &evt, &task_awoken);
|
|
if (task_awoken == pdTRUE) {
|
|
portYIELD_FROM_ISR();
|
|
}
|
|
}
|
|
|
|
static void tp_example_set_thresholds(void)
|
|
{
|
|
uint32_t touch_value;
|
|
for (int i = 0; i<TOUCH_BUTTON_NUM; i++) {
|
|
//read baseline value
|
|
touch_pad_read_raw(button[i], &touch_value);
|
|
//set interrupt threshold.
|
|
touch_pad_set_thresh(button[i], touch_value * button_threshold[i]);
|
|
ESP_LOGI(TAG, "test init: touch pad [%d] base %d, thresh %d", \
|
|
button[i], touch_value, (uint32_t)(touch_value * button_threshold[i]));
|
|
}
|
|
}
|
|
|
|
static void touchsensor_filter_set(touch_filter_mode_t mode)
|
|
{
|
|
/* Filter function */
|
|
touch_filter_config_t filter_info = {
|
|
.mode = mode, // Test jitter and filter 1/4.
|
|
.debounce_cnt = 1, // 1 time count.
|
|
.hysteresis_thr = 1, // 9.4%
|
|
.noise_thr = 1, // 37.5%
|
|
.noise_neg_thr = 1, // 37.5%
|
|
.neg_noise_limit = 10, // 10 time count.
|
|
.jitter_step = 4, // use for jitter mode.
|
|
};
|
|
touch_pad_filter_set_config(filter_info);
|
|
touch_pad_filter_start();
|
|
touch_pad_filter_baseline_reset(TOUCH_PAD_MAX);
|
|
ESP_LOGI(TAG, "touch pad filter init %d", mode);
|
|
}
|
|
|
|
static void tp_example_read_task(void *pvParameter)
|
|
{
|
|
touch_event_t evt = {0};
|
|
static uint8_t guard_mode_flag = 0;
|
|
/* Wait touch sensor init done */
|
|
vTaskDelay(100 / portTICK_RATE_MS);
|
|
tp_example_set_thresholds();
|
|
|
|
while (1) {
|
|
int ret = xQueueReceive(que_touch, &evt, (portTickType)portMAX_DELAY);
|
|
if(ret != pdTRUE) {
|
|
continue;
|
|
}
|
|
if(evt.intr_mask & TOUCH_PAD_INTR_MASK_ACTIVE) {
|
|
/* if guard pad be touched, other pads no response. */
|
|
if(evt.pad_num == button[3]) {
|
|
guard_mode_flag = 1;
|
|
ESP_LOGW(TAG, "TouchSensor [%d] be actived, enter guard mode", evt.pad_num);
|
|
} else {
|
|
if(guard_mode_flag == 0) {
|
|
ESP_LOGI(TAG, "TouchSensor [%d] be actived, status mask 0x%x", evt.pad_num, evt.pad_status);
|
|
} else {
|
|
ESP_LOGW(TAG, "In guard mode. No response");
|
|
}
|
|
}
|
|
}
|
|
if(evt.intr_mask & TOUCH_PAD_INTR_MASK_INACTIVE) {
|
|
/* if guard pad be touched, other pads no response. */
|
|
if(evt.pad_num == button[3]) {
|
|
guard_mode_flag = 0;
|
|
ESP_LOGW(TAG, "TouchSensor [%d] be actived, exit guard mode", evt.pad_num);
|
|
} else {
|
|
if(guard_mode_flag == 0) {
|
|
ESP_LOGI(TAG, "TouchSensor [%d] be inactived, status mask 0x%x", evt.pad_num, evt.pad_status);
|
|
}
|
|
}
|
|
}
|
|
if(evt.intr_mask & TOUCH_PAD_INTR_MASK_DONE) {
|
|
ESP_LOGI(TAG, "TouchSensor [%d] measure done, raw data %d", evt.pad_num, evt.pad_val);
|
|
}
|
|
}
|
|
}
|
|
|
|
void app_main()
|
|
{
|
|
touch_event_t evt = {0};
|
|
if(que_touch == NULL) {
|
|
que_touch = xQueueCreate(TOUCH_BUTTON_NUM, sizeof(touch_event_t));
|
|
}
|
|
// Initialize touch pad peripheral, it will start a timer to run a filter
|
|
ESP_LOGI(TAG, "Initializing touch pad");
|
|
/* Initialize touch pad peripheral. */
|
|
touch_pad_init();
|
|
for (int i = 0; i < TOUCH_BUTTON_NUM; i++) {
|
|
touch_pad_config(button[i]);
|
|
touch_pad_set_thresh(button[i], TOUCH_PAD_THRESHOLD_MAX);
|
|
}
|
|
|
|
#if TOUCH_BUTTON_DENOISE_ENABLE
|
|
/* Denoise setting at TouchSensor 0. */
|
|
touch_pad_denoise_t denoise = {
|
|
/* The bits to be cancelled are determined according to the noise level. */
|
|
.grade = TOUCH_PAD_DENOISE_BIT4,
|
|
.cap_level = TOUCH_PAD_DENOISE_CAP_L7,
|
|
};
|
|
touch_pad_denoise_set_config(denoise);
|
|
touch_pad_denoise_enable();
|
|
ESP_LOGI(TAG, "Denoise function init");
|
|
#endif
|
|
|
|
#if TOUCH_BUTTON_WATERPROOF_ENABLE
|
|
/* Waterproof function */
|
|
touch_pad_waterproof_t waterproof = {
|
|
.guard_ring_pad = button[3], // If no ring pad, set 0;
|
|
/* It depends on the number of the parasitic capacitance of the shield pad. */
|
|
.shield_driver = TOUCH_PAD_SHIELD_DRV_L0, //40pf
|
|
};
|
|
touch_pad_waterproof_set_config(waterproof);
|
|
touch_pad_waterproof_enable();
|
|
ESP_LOGI(TAG, "touch pad waterproof init");
|
|
#endif
|
|
|
|
/* Filter setting */
|
|
touchsensor_filter_set(TOUCH_PAD_FILTER_IIR_8);
|
|
/* Register touch interrupt ISR, enable intr type. */
|
|
touch_pad_isr_register(touchsensor_interrupt_cb, NULL, TOUCH_PAD_INTR_MASK_ALL);
|
|
touch_pad_intr_enable(TOUCH_PAD_INTR_INACTIVE);
|
|
touch_pad_intr_enable(TOUCH_PAD_INTR_ACTIVE);
|
|
|
|
/* Enable touch sensor clock. Work mode is "timer trigger". */
|
|
touch_pad_fsm_start(TOUCH_FSM_MODE_TIMER);
|
|
|
|
// Start a task to show what pads have been touched
|
|
xTaskCreate(&tp_example_read_task, "touch_pad_read_task", 2048, NULL, 5, NULL);
|
|
}
|
|
#endif |