1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
24
25
31
32
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
145
146
147
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
/* ... */
#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_LOW = 0,
}{ ... } button_active_t;
typedef enum {
BUTTON_CB_PUSH = 0,
BUTTON_CB_RELEASE,
BUTTON_CB_TAP,
BUTTON_CB_SERIAL,
}{ ... } button_cb_type_t;
/* ... */
button_handle_t iot_button_create(gpio_num_t gpio_num, button_active_t active_level);
/* ... */
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);
/* ... */
esp_err_t iot_button_set_evt_cb(button_handle_t btn_handle, button_cb_type_t type, button_cb cb, void* arg);
/* ... */
esp_err_t iot_button_add_custom_cb(button_handle_t btn_handle, uint32_t press_sec, button_cb cb, void* arg);
/* ... */
esp_err_t iot_button_delete(button_handle_t btn_handle);
/* ... */
esp_err_t iot_button_rm_cb(button_handle_t btn_handle, button_cb_type_t type);
#ifdef __cplusplus
}{...}
#endif
#ifdef __cplusplus
/* ... */
class CButton
{
private:
button_handle_t m_btn_handle;
/* ... */
CButton(const CButton&);
CButton& operator = (const CButton&);...
public:
/* ... */
CButton(gpio_num_t gpio_num, button_active_t active_level = BUTTON_ACTIVE_LOW);
~CButton();
/* ... */
esp_err_t set_evt_cb(button_cb_type_t type, button_cb cb, void* arg);
/* ... */
esp_err_t set_serial_cb(button_cb cb, void* arg, TickType_t interval_tick, uint32_t start_after_sec);
/* ... */
esp_err_t add_custom_cb(uint32_t press_sec, button_cb cb, void* arg);
/* ... */
esp_err_t rm_cb(button_cb_type_t type);...
}{ ... };
/* ... */#endif
/* ... */
#endif