Using Code which I got from Piotr Bagniewski's Channel on youtube (https://www.youtube.com/watch?v=gp6FN0A20qA) and just adding different things, this is what it looks like when running.
This is the code
#include <ESP8266WiFi.h>
const char* ssid = "...YOURROUTERSSSID..."; // Our Wifi SSID
const char* password = "...YOURROUTERSSISPASS..."; // Our Wifi Password
const int buttonPin1 = 13; // GPIO13 which would be connected to a button
const int buttonPin2 = 12; // GPIO12 which would be connected to a button
const int buttonPin3 = 14; // GPIO14 which would be connected to a button
const int buttonPin4 = 16; // GPIO16 which would be connected to a button
const char* host = "maker.ifttt.com"; //IFTTT channel address
const char* url = "ASTRING"; // Based on which button was pressed this would be the rest of the IFTTT URL Needed
int buttonState1 = 0;
int buttonState2 = 0;
int buttonState3 = 0;
int buttonState4 = 0;
int led = 4; // LED to Signal that the command was sent to IFTTT
int ledError = 5; // LED which would represent problem connecting to Router
void setup() {
Serial.begin(115200);
pinMode(led, OUTPUT);
pinMode(ledError,OUTPUT);
pinMode(buttonPin1, INPUT);
pinMode(buttonPin2, INPUT);
pinMode(buttonPin3, INPUT);
pinMode(buttonPin4, INPUT);
}
int value = 1;
void loop() {
digitalWrite(led,0);
digitalWrite(ledError,0);
buttonState1 = digitalRead(buttonPin1);
buttonState2 = digitalRead(buttonPin2);
buttonState3 = digitalRead(buttonPin3);
buttonState4 = digitalRead(buttonPin4);
if (buttonState1 == HIGH || buttonState2 == HIGH || buttonState3 == HIGH || buttonState4 == HIGH) {
Serial.println("Button Press Detected");
if (value == 1){
// We now connect to local WIFI
Serial.println("Attempting to connect to Router");
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
digitalWrite(ledError,1); // Turn the Error LED on to show there is a problem
delay(250);
digitalWrite(ledError,0); // Turn off the LED so it will have a flash effect, or least keep it off when loop ends
delay(250);
Serial.println("Trying Again");
}
WiFiClient client;
const int httpPort = 80;
if (!client.connect(host, httpPort)) {
return;
}
// We now create a URI for the request
digitalWrite(led,1); // TURN ON LED Showing that we will send something to IFTTT
Serial.println("Sending Command to IFTTT's Maker Channel");
if (buttonState1 == HIGH) {
url = "/trigger/MAKERNAME1/with/key/MYREALLONGMAKERPRIVATEKEY"; //our link to trigger the event with special key and event name
}
if (buttonState2 == HIGH) {
url = "/trigger/MAKERNAME2/with/key/MYREALLONGMAKERPRIVATEKEY"; //our link to trigger the event with special key and event name
}
if (buttonState3 == HIGH) {
url = "/trigger/MAKERNAME3/with/key/MYREALLONGMAKERPRIVATEKEY"; //our link to trigger the event with special key and event name
}
if (buttonState4 == HIGH) {
url = "/trigger/MAKERNAME3/with/key/MYREALLONGMAKERPRIVATEKEY"; //our link to trigger the event with special key and event name
}
// This will send the request to the server
Serial.println(url);
client.print(String("GET ") + url + " HTTP/1.1\r\n" +
"Host: " + host + "\r\n" +
"Connection: close\r\n\r\n");
value = 0;
delay(1000);
}
digitalWrite(led,0); // TURN OFF LED to Show that we are done with IFTTT
}
else{
value = 1;
delay(500);
}
}
Thank you!