Select one of the symbols to view example projects that use it.
 
Outline
#define _IOT_BUTTON_H_
#include "driver/gpio.h"
#include "freertos/FreeRTOS.h"
button_handle_t
button_active_t
button_cb_type_t
iot_button_create(gpio_num_t, button_active_t);
iot_button_set_serial_cb(button_handle_t, uint32_t, TickType_t, button_cb, void *);
iot_button_set_evt_cb(button_handle_t, button_cb_type_t, button_cb, void *);
iot_button_add_custom_cb(button_handle_t, uint32_t, button_cb, void *);
iot_button_delete(button_handle_t);
iot_button_rm_cb(button_handle_t, button_cb_type_t);
CButton
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFexamples/bluetooth/esp_ble_mesh/common_components/button/include/iot_button.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _IOT_BUTTON_H_ #define _IOT_BUTTON_H_ #ifdef __cplusplus extern "C" { #endif #include "driver/gpio.h" #include "freertos/FreeRTOS.h" typedef void (* button_cb)(void*); typedef void* button_handle_t; typedef enum { BUTTON_ACTIVE_HIGH = 1, /*!<button active level: high level*/ BUTTON_ACTIVE_LOW = 0, /*!<button active level: low level*/ }{ ... } button_active_t; typedef enum { BUTTON_CB_PUSH = 0, /*!<button push callback event */ BUTTON_CB_RELEASE, /*!<button release callback event */ BUTTON_CB_TAP, /*!<button quick tap callback event(will not trigger if there already is a "PRESS" event) */ BUTTON_CB_SERIAL, /*!<button serial trigger callback event */ }{ ... } button_cb_type_t; /** * @brief Init button functions * * @param gpio_num GPIO index of the pin that the button uses * @param active_level button hardware active level. * For "BUTTON_ACTIVE_LOW" it means when the button pressed, the GPIO will read low level. * * @return A button_handle_t handle to the created button object, or NULL in case of error. *//* ... */ button_handle_t iot_button_create(gpio_num_t gpio_num, button_active_t active_level); /** * @brief Register a callback function for a serial trigger event. * * @param btn_handle handle of the button object * @start_after_sec define the time after which to start serial trigger action * @interval_tick serial trigger interval * @cb callback function for "TAP" action. * @arg Parameter for callback function * @note * Button callback functions execute in the context of the timer service task. * It is therefore essential that button callback functions never attempt to block. * For example, a button callback function must not call vTaskDelay(), vTaskDelayUntil(), * or specify a non zero block time when accessing a queue or a semaphore. * @return * - ESP_OK Success * - ESP_FAIL Parameter error *//* ... */ esp_err_t iot_button_set_serial_cb(button_handle_t btn_handle, uint32_t start_after_sec, TickType_t interval_tick, button_cb cb, void* arg); /** * @brief Register a callback function for a button_cb_type_t action. * * @param btn_handle handle of the button object * @param type callback function type * @param cb callback function for "TAP" action. * @param arg Parameter for callback function * @note * Button callback functions execute in the context of the timer service task. * It is therefore essential that button callback functions never attempt to block. * For example, a button callback function must not call vTaskDelay(), vTaskDelayUntil(), * or specify a non zero block time when accessing a queue or a semaphore. * @return * - ESP_OK Success * - ESP_FAIL Parameter error *//* ... */ esp_err_t iot_button_set_evt_cb(button_handle_t btn_handle, button_cb_type_t type, button_cb cb, void* arg); /** * @brief * * @param btn_handle handle of the button object * @param press_sec the callback function would be called if you press the button for a specified period of time * @param cb callback function for "PRESS" action. * @param arg Parameter for callback function * * @note * Button callback functions execute in the context of the timer service task. * It is therefore essential that button callback functions never attempt to block. * For example, a button callback function must not call vTaskDelay(), vTaskDelayUntil(), * or specify a non zero block time when accessing a queue or a semaphore. * @return * - ESP_OK Success * - ESP_FAIL Parameter error *//* ... */ esp_err_t iot_button_add_custom_cb(button_handle_t btn_handle, uint32_t press_sec, button_cb cb, void* arg); /** * @brief Delete button object and free memory * @param btn_handle handle of the button object * * @return * - ESP_OK Success * - ESP_FAIL Parameter error *//* ... */ esp_err_t iot_button_delete(button_handle_t btn_handle); /** * @brief Remove callback * * @param btn_handle The handle of the button object * @param type callback function event type * * @return * - ESP_OK Success *//* ... */ esp_err_t iot_button_rm_cb(button_handle_t btn_handle, button_cb_type_t type); #ifdef __cplusplus }{...} #endif #ifdef __cplusplus /** * class of button * simple usage: * CButton* btn = new CButton(BUTTON_IO_NUM, BUTTON_ACTIVE_LEVEL, BUTTON_SERIAL_TRIGGER, 3); * btn->add_cb(BUTTON_CB_PUSH, button_tap_cb, (void*) push, 50 / portTICK_PERIOD_MS); * btn->add_custom_cb(5, button_press_5s_cb, NULL); * ...... * delete btn; *//* ... */ class CButton { private: button_handle_t m_btn_handle; /** * prevent copy constructing *//* ... */ CButton(const CButton&); CButton& operator = (const CButton&);... public: /** * @brief constructor of CButton * * @param gpio_num GPIO index of the pin that the button uses * @param active_level button hardware active level. * For "BUTTON_ACTIVE_LOW" it means when the button pressed, the GPIO will read low level. *//* ... */ CButton(gpio_num_t gpio_num, button_active_t active_level = BUTTON_ACTIVE_LOW); ~CButton(); /** * @brief Register a callback function for a button_cb_type_t action. * * @param type callback function type * @param cb callback function for "TAP" action. * @param arg Parameter for callback function * @note * Button callback functions execute in the context of the timer service task. * It is therefore essential that button callback functions never attempt to block. * For example, a button callback function must not call vTaskDelay(), vTaskDelayUntil(), * or specify a non zero block time when accessing a queue or a semaphore. * @return * - ESP_OK Success * - ESP_FAIL Parameter error *//* ... */ esp_err_t set_evt_cb(button_cb_type_t type, button_cb cb, void* arg); /** * @brief Register a callback function for a serial trigger event. * * @param btn_handle handle of the button object * @start_after_sec define the time after which to start serial trigger action * @interval_tick serial trigger interval * @cb callback function for "TAP" action. * @arg Parameter for callback function * @note * Button callback functions execute in the context of the timer service task. * It is therefore essential that button callback functions never attempt to block. * For example, a button callback function must not call vTaskDelay(), vTaskDelayUntil(), * or specify a non zero block time when accessing a queue or a semaphore. * @return * - ESP_OK Success * - ESP_FAIL Parameter error *//* ... */ esp_err_t set_serial_cb(button_cb cb, void* arg, TickType_t interval_tick, uint32_t start_after_sec); /** * @brief * * @param press_sec the callback function would be called if you press the button for a specified period of time * @param cb callback function for "PRESS" action. * @param arg Parameter for callback function * * @note * Button callback functions execute in the context of the timer service task. * It is therefore essential that button callback functions never attempt to block. * For example, a button callback function must not call vTaskDelay(), vTaskDelayUntil(), * or specify a non zero block time when accessing a queue or a semaphore. * @return * - ESP_OK Success * - ESP_FAIL Parameter error *//* ... */ esp_err_t add_custom_cb(uint32_t press_sec, button_cb cb, void* arg); /** * @brief Remove callback * * @param type callback function event type * * @return * - ESP_OK Success *//* ... */ esp_err_t rm_cb(button_cb_type_t type);... }{ ... }; /* ... */#endif /* ... */ #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.