You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
666 B
32 lines
666 B
8 years ago
|
/*
|
||
|
* Copyright (C) 2015 -2018 Espressif System
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __SMARTCONFIG_H__
|
||
|
#define __SMARTCONFIG_H__
|
||
|
|
||
|
typedef enum {
|
||
|
SC_STATUS_WAIT = 0,
|
||
|
SC_STATUS_FIND_CHANNEL,
|
||
|
SC_STATUS_GETTING_SSID_PSWD,
|
||
|
SC_STATUS_LINK,
|
||
|
SC_STATUS_LINK_OVER,
|
||
|
} sc_status;
|
||
|
|
||
|
typedef enum {
|
||
|
SC_TYPE_ESPTOUCH = 0,
|
||
|
SC_TYPE_AIRKISS,
|
||
|
SC_TYPE_ESPTOUCH_AIRKISS,
|
||
|
} sc_type;
|
||
|
|
||
|
typedef void (*sc_callback_t)(sc_status status, void *pdata);
|
||
|
|
||
|
const char *smartconfig_get_version(void);
|
||
|
bool smartconfig_start(sc_callback_t cb, ...);
|
||
|
bool smartconfig_stop(void);
|
||
|
bool esptouch_set_timeout(uint8 time_s); //15s~255s, offset:45s
|
||
|
bool smartconfig_set_type(sc_type type);
|
||
|
|
||
|
#endif
|