板子是ESP8266,使用platformio nodemcu SDK开发,连接服务器,mqtt协议,这里mqtt协议介绍可阅读https://mcxiaoke.gitbooks.io/mqtt-cn/content/
8266接收mqtt消息,解析命令控制led或者开关什么的,实现物联网,好了功能框架大概就是这样.
8266端程序,可用的mqtt客户端程序有多种版本,我用的是pubsubclient,下载地址:https://github.com/knolleary/pubsubclient/releases/tag/v2.6
下载完,解压到8266工程目录下,其实用到的也就是这两个文件:
8266源码如下:
#include <Arduino.h>
#include <ESP8266WiFi.h>
#include <PubSubClient.h>
#include "main.h"
// Update these with values suitable for your network.
#define mqtt_port 1883</