-
Notifications
You must be signed in to change notification settings - Fork 0
/
release3.0-nodeMCU.ino
240 lines (199 loc) · 6.61 KB
/
release3.0-nodeMCU.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
//导入相关的库
#include<ArduinoJson.h>
#include<SoftwareSerial.h>
#include<ESP8266WiFi.h>
#include<Adafruit_MQTT.h>
#include<Adafruit_MQTT_Client.h>
/************************* WiFi Access Point *********************************/
#define WLAN_SSID "iQOO 7" //你的WI-FI的SSID,注意把你的 WIFI 的 AP 设置成 2.4GHz 频段。
#define WLAN_PASS "1234567899" //你的WI-FI的密码
/************************* Adafruit.io Setup *********************************/
#define AIO_SERVER "io.adafruit.com"
#define AIO_SERVERPORT 1883 //use 8883 for SSL
#define AIO_USERNAME "coderzzx" //你在io.adafruit.com上注册的用户名
#define AIO_KEY "aio_FVAz59rsIgM6vRHWNTbX3h6ceAch" //你在io.adafruit.com所获得的AIO
/*
定义nodeMCU引脚编号
*/
#define D1 5
#define D2 4
#define D3 0
#define D4 2
#define D5 14
#define D6 12
#define D7 13
#define LED_PIN D4
/************************************************实例化串口通信的对象****************************************************/
SoftwareSerial nodemcuSerial(D6, D5);
/**********************************************用于将数据发布到服务器上***************************************************/
// Create an ESP8266 WiFiClient class to connect to the MQTT server.
WiFiClient client;
// Setup the MQTT client class by passing in the WiFi client and MQTT server and login details.
Adafruit_MQTT_Client mqtt(&client, AIO_SERVER, AIO_SERVERPORT, AIO_USERNAME, AIO_KEY);
/****************************** Feeds ***************************************/
// Setup a feed called 'photocell' for publishing.
// Notice MQTT paths for AIO follow the form: <username>/feeds/<feedname>
Adafruit_MQTT_Publish t_rel = Adafruit_MQTT_Publish(&mqtt, AIO_USERNAME "/feeds/Temperature");
Adafruit_MQTT_Publish h_rel = Adafruit_MQTT_Publish(&mqtt, AIO_USERNAME "/feeds/Humidity");
Adafruit_MQTT_Publish c_rel = Adafruit_MQTT_Publish(&mqtt, AIO_USERNAME "/feeds/CO Density");
Adafruit_MQTT_Publish p_rel = Adafruit_MQTT_Publish(&mqtt, AIO_USERNAME "/feeds/PM2.5");
// Setup a feed called 'onoff' for subscribing to changes.
Adafruit_MQTT_Subscribe onoffbutton = Adafruit_MQTT_Subscribe(&mqtt, AIO_USERNAME "/feeds/Switch");
// Function to connect and reconnect as necessary to the MQTT server.
// Should be called in the loop function and it will take care if connecting.
void MQTT_connect() {
int8_t ret;
int8_t retries = 10;
// Stop if already connected.
if ( mqtt.connected() )
{
return;
}
Serial.println("Connecting to MQTT... ");
while ( (ret = mqtt.connect()) != 0 ) // connect will return 0 for connected
{
Serial.println( mqtt.connectErrorString(ret) );
Serial.println("Retrying MQTT connection in 5 seconds...");
mqtt.disconnect();
delay(5000);
retries--;
if (retries == 0) {
// basically die and wait for WDT to reset me
while (1);
}
}
Serial.println("MQTT Connected!");
}
/***************************************************数据发布函数*********************************************************/
void infoRelea(float x[])
{
// this is our 'wait for incoming subscription packets' busy subloop
// try to spend your time here
Adafruit_MQTT_Subscribe *subscription;
// Ensure the connection to the MQTT server is alive (this will make the first
// connection and automatically reconnect when disconnected). See the MQTT_connect
// function definition further below.
MQTT_connect();
int flag;
while ((subscription = mqtt.readSubscription(5000)))
{
if (subscription == &onoffbutton)
{
Serial.print(F("Got: "));
String value = (char *)onoffbutton.lastread;
Serial.println(value);
if (!value.compareTo("1"))
{
digitalWrite(LED_PIN, HIGH);
flag = 1;
}
if (!value.compareTo("0"))
{
digitalWrite(LED_PIN, LOW);
flag = 0;
return;
}
}
}
// Now we can publish stuff!
int i;
for (i = 0; i < 4; i++)
{
switch (i)
{
case 0:
if (! t_rel.publish(x[0]))
{
Serial.println(F("Failed"));
}
else
{
Serial.println(F("OK!"));
}
break;
case 1:
if (! h_rel.publish(x[1]))
{
Serial.println(F("Failed"));
}
else
{
Serial.println(F("OK!"));
}
break;
case 2:
if (! c_rel.publish(x[2]))
{
Serial.println(F("Failed"));
}
else
{
Serial.println(F("OK!"));
}
break;
case 3:
if (! p_rel.publish(x[3]))
{
Serial.println(F("Failed"));
}
else
{
Serial.println(F("OK!"));
}
}
}
}
//各个初始化操作
void setup()
{
Serial.begin(115200);
while (!Serial) continue;
nodemcuSerial.begin(9600);
Serial.println(F("Adafruit MQTT demo"));
// Connect to WiFi access point.
Serial.print("Connecting to ");
Serial.println(WLAN_SSID);
WiFi.begin(WLAN_SSID, WLAN_PASS);
while (WiFi.status() != WL_CONNECTED)
{
delay(1000);
Serial.print(".");
}
Serial.println();
Serial.println("WiFi connected");
Serial.print("IP address: ");
Serial.println(WiFi.localIP());
// Setup MQTT subscription for onoff feed.
mqtt.subscribe(&onoffbutton);
pinMode(LED_PIN, OUTPUT);
}
void loop()
{
/************************************************用于从串口中获取数据****************************************************/
const size_t CAPACITY = JSON_OBJECT_SIZE(20);
StaticJsonDocument<CAPACITY> doc;
DeserializationError error = deserializeJson(doc, nodemcuSerial);
// if (error)
// {
// Serial.print(F("deserializeJson() failed: "));
// Serial.println(error.f_str());
// return;
// }
JsonObject root = doc.as<JsonObject>();
//获取数据
/*
t:温度
h:湿度
val:一氧化碳浓度
d:PM2.5浓度
*/
float temp = (float)root["temp"];
float humi = (float)root["humi"];
float val = (float)root["val"];
float dens = (float)root["dens"];
float data[4] = {temp, humi, val, dens};
// for (int i = 0; i < 4; i++)
// Serial.println(data[i]);
/***********************************************************************************************************************/
infoRelea(data);
}