1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
25
26
27
33
34
35
36
37
38
47
48
49
54
55
60
61
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
/* ... */
#ifndef __ESP_SMARTCONFIG_H__
#define __ESP_SMARTCONFIG_H__
#include <stdint.h>
#include <stdbool.h>
#include "esp_err.h"
#include "esp_event_base.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
SC_TYPE_ESPTOUCH = 0,
SC_TYPE_AIRKISS,
SC_TYPE_ESPTOUCH_AIRKISS,
SC_TYPE_ESPTOUCH_V2,
}{ ... } smartconfig_type_t;
typedef enum {
SC_EVENT_SCAN_DONE,
SC_EVENT_FOUND_CHANNEL,
SC_EVENT_GOT_SSID_PSWD,
SC_EVENT_SEND_ACK_DONE,
}{ ... } smartconfig_event_t;
ESP_EVENT_DECLARE_BASE(SC_EVENT);
typedef struct {
uint8_t ssid[32];
uint8_t password[64];
bool bssid_set;
uint8_t bssid[6];
smartconfig_type_t type;
uint8_t token;
uint8_t cellphone_ip[4];
}{ ... } smartconfig_event_got_ssid_pswd_t;
typedef struct {
bool enable_log;
bool esp_touch_v2_enable_crypt;
char *esp_touch_v2_key;
}{ ... } smartconfig_start_config_t;
#define SMARTCONFIG_START_CONFIG_DEFAULT() { \
.enable_log = false, \
.esp_touch_v2_enable_crypt = false,\
.esp_touch_v2_key = NULL \
}{...}
/* ... */
const char *esp_smartconfig_get_version(void);
/* ... */
esp_err_t esp_smartconfig_start(const smartconfig_start_config_t *config);
/* ... */
esp_err_t esp_smartconfig_stop(void);
/* ... */
esp_err_t esp_esptouch_set_timeout(uint8_t time_s);
/* ... */
esp_err_t esp_smartconfig_set_type(smartconfig_type_t type);
/* ... */
esp_err_t esp_smartconfig_fast_mode(bool enable);
/* ... */
esp_err_t esp_smartconfig_get_rvd_data(uint8_t *rvd_data, uint8_t len);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif