106 lines
2.6 KiB
C++
106 lines
2.6 KiB
C++
// Include the esp wifi lib
|
|
#include <ESP8266WiFi.h>
|
|
// Include the mqtt client lib
|
|
#include <PubSubClient.h>
|
|
|
|
// Include any secrets.
|
|
#include "window_control_secrets.h"
|
|
|
|
#define wifi_ssid SECRET_SSID
|
|
#define wifi_password SECRET_PASS
|
|
|
|
#define mqtt_server "mqtt.kitsunehosting.net"
|
|
#define mqtt_port 1883
|
|
#define mqtt_user SECRET_MQTT_USER
|
|
#define mqtt_password SECRET_MQTT_PASS
|
|
|
|
|
|
#define window_name "window_0"
|
|
#define mqtt_root "/house/upstairs_lab/actuators/" window_name
|
|
|
|
#define in_topic "/testing/in"
|
|
#define out_topic "/testing/out"
|
|
// Replace by 2 if you aren't enable to use Serial Monitor... Don't forget to Rewire R1 to GPIO2!
|
|
#define in_led 2
|
|
|
|
WiFiClient espClient;
|
|
PubSubClient client;
|
|
|
|
void setup() {
|
|
Serial.begin(115200);
|
|
setup_wifi();
|
|
client.setClient(espClient);
|
|
client.setServer(mqtt_server, mqtt_port);
|
|
client.setCallback(callback);
|
|
|
|
// initialize digital pin LED_BUILTIN as an output.
|
|
pinMode(in_led, OUTPUT);
|
|
digitalWrite(in_led, HIGH);
|
|
}
|
|
|
|
void setup_wifi() {
|
|
delay(10);
|
|
// We start by connecting to a WiFi network
|
|
Serial.println();
|
|
WiFi.hostname("ESP-" window_name);
|
|
Serial.print("Connecting to ");
|
|
Serial.println(wifi_ssid);
|
|
|
|
WiFi.begin(wifi_ssid, wifi_password);
|
|
|
|
while (WiFi.status() != WL_CONNECTED) {
|
|
delay(500);
|
|
Serial.println("Not yet connected.. Waiting 500ms to check again..");
|
|
}
|
|
|
|
Serial.println("");
|
|
Serial.println("WiFi connected");
|
|
Serial.println("IP address: ");
|
|
Serial.println(WiFi.localIP());
|
|
}
|
|
|
|
void reconnect() {
|
|
// Loop until we're reconnected
|
|
while (!client.connected()) {
|
|
Serial.print("Attempting MQTT connection...");
|
|
// Attempt to connect
|
|
if (client.connect("ESP8266Client", mqtt_user, mqtt_password)) {
|
|
Serial.println("connected");
|
|
} else {
|
|
Serial.print("failed, rc=");
|
|
Serial.print(client.state());
|
|
Serial.println(" try again in 5 seconds");
|
|
// Wait 5 seconds before retrying
|
|
delay(5000);
|
|
}
|
|
}
|
|
}
|
|
|
|
void callback(char* topic, byte* payload, unsigned int length) {
|
|
Serial.print("Message arrived [");
|
|
Serial.print(topic);
|
|
Serial.print("] ");
|
|
for (int i = 0; i < length; i++) {
|
|
char receivedChar = (char)payload[i];
|
|
Serial.print(receivedChar);
|
|
if (receivedChar == '0')
|
|
digitalWrite(in_led, LOW);
|
|
if (receivedChar == '1')
|
|
digitalWrite(in_led, HIGH);
|
|
}
|
|
Serial.println();
|
|
}
|
|
|
|
void loop() {
|
|
if (!client.connected()) {
|
|
reconnect();
|
|
}
|
|
client.loop();
|
|
// Publishes a random 0 and 1 like someone switching off and on randomly (random(2))
|
|
client.publish(out_topic, String(random(2)).c_str(), true);
|
|
delay(1000);
|
|
client.subscribe(in_topic);
|
|
tone(2, 2000, 500);
|
|
delay(1000);
|
|
}
|