diff --git a/README.md b/README.md new file mode 100644 index 0000000..b723251 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# esp32-discord-webhook +code used to send messages from an esp32 to a discord webhook +forked from [this github repo](https://github.com/usini/usini_discord_webhook) + + +## how to use? +go ahead and download this as a zip or `git clone` this to your Arduino projects/sketches folder and upload to your board diff --git a/libraries/examples/bme280_weather/bme280_weather.ino b/libraries/examples/bme280_weather/bme280_weather.ino deleted file mode 100644 index 77010f2..0000000 --- a/libraries/examples/bme280_weather/bme280_weather.ino +++ /dev/null @@ -1,38 +0,0 @@ -/* - Send BME280 sensor value to Discord using WebHook - You need Adafruit_BME280 library -*/ - - -#include -#include -#include - -Discord_Webhook discord; -// How to get the Webhook URL -// https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks -String DISCORD_WEBHOOK = "https://discord.com/api/webhooks/id/token"; - -Adafruit_BME280 bme; - -void setup() { - Serial.begin(115200); - if(bme.begin(0x76)){ // Sensor address can be 0x76 or 0x77 - Serial.println("BME280 init success"); - } else { - Serial.println("BME280 init failed"); - } - - discord.begin(DISCORD_WEBHOOK); // Initialize the Discord_Webhook object - discord.addWiFi("WiFiName","WiFiPassword"); // Add WiFi credentials (you can add multiples WiFi SSID) - discord.connectWiFi(); // Connect to WiFi -} - -void loop() { - // Send BME280 sensor value to Discord using WebHook every minute - discord.send("Temperature: " + String(bme.readTemperature()) + - "°C - Humidity: " + String(bme.readHumidity()) + - "% - Pressure: " + String(bme.readPressure() / 100.0F) + - " hPa"); - delay(60000); -} \ No newline at end of file diff --git a/libraries/examples/disableDebug/disableDebug.ino b/libraries/examples/disableDebug/disableDebug.ino deleted file mode 100644 index 2c04ea8..0000000 --- a/libraries/examples/disableDebug/disableDebug.ino +++ /dev/null @@ -1,31 +0,0 @@ -/* - Send Hello World to Discord using WebHook - This example disable serial debug messages - discord.send returns true if the message was sent successfully -*/ - - -#include - -Discord_Webhook discord; -// How to get the Webhook URL -// https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks -String DISCORD_WEBHOOK = "https://discord.com/api/webhooks/id/token"; - -void setup() { - Serial.begin(115200); - discord.begin(DISCORD_WEBHOOK); // Initialize the Discord_Webhook object - discord.disableDebug(); // Disable debug (no serial message will be send) - discord.addWiFi("WiFiName","WiFiPassword"); // Add WiFi credentials (you can add multiples WiFi SSID) - discord.connectWiFi(); // Connect to WiFi - bool message_sent = discord.send("Hello World"); // Send message - if(message_sent) { - Serial.println("Message sent"); - } else { - Serial.println("I AM ERROR"); - } -} - -void loop() { - -} \ No newline at end of file diff --git a/libraries/examples/variable/variable.ino b/libraries/examples/variable/variable.ino deleted file mode 100644 index 13db812..0000000 --- a/libraries/examples/variable/variable.ino +++ /dev/null @@ -1,24 +0,0 @@ -/* - Send a message with variables to Discord using WebHook -*/ - -#include - -Discord_Webhook discord; -// How to get the Webhook URL -// https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks -String DISCORD_WEBHOOK = "https://discord.com/api/webhooks/id/token"; - -void setup() { - int variable_int = 69; // Int variable (can be float, long etc...) - String variable_string = "SUS"; // String variable - - Serial.begin(115200); - discord.begin(DISCORD_WEBHOOK); // Initialize the Discord_Webhook object - discord.addWiFi("WiFiName","WiFiPassword"); // Add WiFi credentials (you can add multiples WiFi SSID) - discord.connectWiFi(); // Connect to WiFi - discord.send("When the variable " + String(variable_int) + " is " + variable_string); // Send message -} - -void loop() { -} \ No newline at end of file