please README.md, cleaned up directories

This commit is contained in:
rintyuu 2024-04-16 17:30:32 -07:00
parent e44cd9cb94
commit 247524bcbe
4 changed files with 7 additions and 93 deletions

7
README.md Normal file
View file

@ -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

View file

@ -1,38 +0,0 @@
/*
Send BME280 sensor value to Discord using WebHook
You need Adafruit_BME280 library
*/
#include <Adafruit_Sensor.h>
#include <Adafruit_BME280.h>
#include <Discord_WebHook.h>
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);
}

View file

@ -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.h>
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() {
}

View file

@ -1,24 +0,0 @@
/*
Send a message with variables to Discord using WebHook
*/
#include <Discord_WebHook.h>
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() {
}