installed libraries and changed code to ESP32

-> working
This commit is contained in:
Joe Tretter
2020-09-24 12:26:22 -05:00
parent b0159ea45e
commit 0141f2ef36
3 changed files with 31 additions and 16 deletions

View File

@@ -19,7 +19,7 @@
*/
#include <Arduino.h>
#include <ESP8266WiFi.h>
#include <WiFi.h>
#include <PubSubClient.h>
#include <ArduinoJson.h>
#include "DHTesp.h"
@@ -68,7 +68,7 @@ void reconnect() {
while (!client.connected()) {
Serial.print("Attempting MQTT connection...");
// Create a random client ID
String clientId = "ESP8266Client-";
String clientId = "ESP32Client-";
clientId += String(random(0xffff), HEX);
// Attempt to connect
if (client.connect(clientId.c_str())) {

View File

@@ -0,0 +1,9 @@
{
"folders": [
{
"name": "TempMQTT",
"path": ".."
}
],
"settings": {}
}