commit 7411a1be26ca89ade1e85923affb26b8e92daf35 Author: rintyuu Date: Tue Apr 16 17:19:09 2024 -0700 Add foo.ino this is the main project/sketch file (taken from https://github.com/usini/usini_discord_webhook/blob/main/examples/helloworld/helloworld.ino) diff --git a/foo.ino b/foo.ino new file mode 100644 index 0000000..aed53b7 --- /dev/null +++ b/foo.ino @@ -0,0 +1,16 @@ +#include + +Discord_Webhook discord; +String DISCORD_WEBHOOK = "https://discord.com/api/webhooks/id/token"; // insert your webhook here + +void setup() { + Serial.begin(115200); + discord.begin(DISCORD_WEBHOOK); // init + discord.addWiFi("WiFiName","WiFiPassword"); // update this line to best fit you + discord.connectWiFi(); + discord.send("Hello World"); +} + +void loop() { + +} \ No newline at end of file