/esp8266-smartlink

esp8266的一键配置(smartlink)实现原型

Primary LanguageC

esp8266-smartlink

Instruction in English is followed by Chinese.

名词定义

Smartlink 用于在物理网设备没有外部输入端时,使用手机对其进行配置的一种通用的说法。

Definition of Smartlink

Smartlink is a generic phrase when you configure your IoT devices by mobile phone, PC etc. instead of physical external devices.

使用方法

在需要使用 smartlink 的地方调用

smartlink_init(callback_func, callback_func_args, callback_failed_func, max_retry);

设置完成后会调用 (*callback_func)(callback_func_args),连接失败则会调用 (*callback_failed_func)(callback_func_args) 使用手机手动添加一个Wi-Fi网络,ssid为 ssid<!-SL-!>password,确定的几乎一瞬间 8266 就会收到并且开始配置。

Usage

Call smartlink_init(callback_func, callback_func_args, callback_failed_func, max_retry); when you want to use Smarklink to confiure.

callback_func: callback function when connect target successfully.
callback_func_args: arguments of success callback function.
callback_failed_func: callback function when fail to connect target.
max_retry: maximiun number of retry.

Mobile: Add a ssid named ssid<!-SL-!>password manually, 8266 will receive this request almost immediately and finish configuration.

原理

Probe Request 包的 tagged parameter 字段是不加密的,这个字段中的 ssid 可以每次最大传送 32 字节的数据。

Principle

tagged parameter in Probe Request packet is not encrypted, we can reuse this area to send data to our IoT devices.

Reference

Cisco Support Forums