You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.0 KiB
Arduino
67 lines
2.0 KiB
Arduino
|
3 days ago
|
#include <ESP8266WiFi.h>
|
||
|
|
#include <PubSubClient.h>
|
||
|
|
#include <ArduinoJson.h>
|
||
|
|
|
||
|
|
// WiFi
|
||
|
|
const char *ssid = "mousse"; // Enter your WiFi name
|
||
|
|
const char *password = "qweqweqwe"; // Enter WiFi password
|
||
|
|
|
||
|
|
// MQTT Broker
|
||
|
|
const char *mqtt_broker = "broker.emqx.io";
|
||
|
|
const char *topic = "esp8266/test";
|
||
|
|
const char *mqtt_username = "emqx";
|
||
|
|
const char *mqtt_password = "public";
|
||
|
|
const int mqtt_port = 1883;
|
||
|
|
|
||
|
|
// Moisture
|
||
|
|
#define sensorPIN A0
|
||
|
|
unsigned long previousMillis = 0;
|
||
|
|
|
||
|
|
WiFiClient espClient;
|
||
|
|
PubSubClient client(espClient);
|
||
|
|
|
||
|
|
void setup() {
|
||
|
|
// Set software serial baud to 115200;
|
||
|
|
Serial.begin(115200);
|
||
|
|
// connecting to a WiFi network
|
||
|
|
WiFi.begin(ssid, password);
|
||
|
|
while (WiFi.status() != WL_CONNECTED) {
|
||
|
|
delay(500);
|
||
|
|
Serial.println("Connecting to WiFi..");
|
||
|
|
}
|
||
|
|
Serial.println("Connected to the WiFi network");
|
||
|
|
//connecting to a mqtt broker
|
||
|
|
client.setServer(mqtt_broker, mqtt_port);
|
||
|
|
while (!client.connected()) {
|
||
|
|
String client_id = "esp8266-client-";
|
||
|
|
client_id += String(WiFi.macAddress());
|
||
|
|
Serial.printf("The client %s connects to the public mqtt broker\n", client_id.c_str());
|
||
|
|
if (client.connect(client_id.c_str(), mqtt_username, mqtt_password)) {
|
||
|
|
Serial.println("Public emqx mqtt broker connected");
|
||
|
|
} else {
|
||
|
|
Serial.print("failed with state ");
|
||
|
|
Serial.print(client.state());
|
||
|
|
delay(2000);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
void loop() {
|
||
|
|
client.loop();
|
||
|
|
unsigned long currentMillis = millis();
|
||
|
|
// temperature and humidity data are publish every five second
|
||
|
|
if (currentMillis - previousMillis >= 5000) {
|
||
|
|
previousMillis = currentMillis;
|
||
|
|
float moistureValue = analogRead(sensorPIN);
|
||
|
|
// json serialize
|
||
|
|
DynamicJsonDocument data(256);
|
||
|
|
data["moisture"] = moistureValue;
|
||
|
|
// publish moisture
|
||
|
|
char json_string[256];
|
||
|
|
serializeJson(data, json_string);
|
||
|
|
//
|
||
|
|
Serial.println(json_string);
|
||
|
|
client.publish(topic, json_string, false);
|
||
|
|
}
|
||
|
|
}
|