我正在尝试使用Arduino和ESP8266实现MQTT。设置应该发布到代理,进入休眠一段时间,然后自行重置,以便循环继续。
草图:
#include <WiFiEsp.h>
#include <WiFiEspClient.h>
#include <WiFiEspUdp.h>
#include "SoftwareSerial.h"
#include <PubSubClient.h>
#include "LowPower.h"
IPAddress server(10, 8, 17, 14);
char ssid[] = "myssid";
char pass[] = "pass";
int status = WL_IDLE_STATUS;
WiFiEspClient espClient;
PubSubClient client(espClient);
SoftwareSerial soft(2,3);
void setup() {
Serial.begin(9600);
soft.begin(9600);
WiFi.init(&soft);
if (WiFi.status() == WL_NO_SHIELD) {
Serial.println("WiFi shield not present");
while (true);
}
while ( status != WL_CONNECTED) {
Serial.print("Attempting to connect to WPA SSID: ");
Serial.println(ssid);
status = WiFi.begin(ssid, pass);
}
Serial.println("You're connected to the network");
client.setServer(server, 1883);
}
void(* resetFunc)(void)=0;
void loop() {
if (!client.connected()) {
reconnect();
}
Serial.println("going to sleep");
delay(500);
for(int i=0;i<8;i++)
LowPower.powerDown(SLEEP_8S,ADC_OFF,BOD_OFF);
delay(500);
Serial.println("resetting");
delay(500);
resetFunc();
}
void reconnect() {
while (!client.connected()) {
Serial.print("Attempting MQTT connection...");
if (client.connect("arduinoClient")) {
Serial.println("connected");
client.publish("IITMandi","testing mqtt powersaver...");
} else {
Serial.print("failed, rc=");
Serial.print(client.state());
Serial.println(" try again in 5 seconds");
delay(5000);
}
}
}
经过几次发布(我见过的最高连续出版物大约是20篇),它无法发布更多内容。纳米不会变热,但ESP会变热。
谁能告诉我可能是什么原因?
答案 0 :(得分:-1)
我已经与ESP8266作战了大约一个星期,所以我感觉好像我知道您的问题所在。您的ESP8266可能油炸了,对您来说没有问题。故障的原因很可能是内部二极管故障,导致您的设备出现电流问题。根据制造商的不同,二极管的额定值不正确,短时间使用后会短路。如果是更紧急的故障,则可能是您的模块无法处理来自arduino的5v DIO。祝你好运。可能很挑剔。