diff --git a/examples/uptime_post/uptime_post.ino b/examples/uptime_post/uptime_post.ino index 41ce1fb..f16c41d 100644 --- a/examples/uptime_post/uptime_post.ino +++ b/examples/uptime_post/uptime_post.ino @@ -2,8 +2,9 @@ #include #include -char ssid[] = "ds9"; -char password[] = "hogeFugapiyo"; +// WiFi configuration --- UPDATE this configuration for your WiFi AP +char ssid[] = "ssid"; +char password[] = "password"; // WireGuard configuration --- UPDATE this configuration from JSON char private_key[] = "(Private Key) "; // [Interface] PrivateKey diff --git a/library.properties b/library.properties index 6747aa5..d5f09ff 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=WireGuard-ESP32 -version=0.1.0 +version=0.1.1 author=Kenta Ida maintainer=Kenta Ida sentence=WireGuard implementation for Arduino ESP32 diff --git a/src/WireGuard.cpp b/src/WireGuard.cpp index a8019ea..68b7ae2 100644 --- a/src/WireGuard.cpp +++ b/src/WireGuard.cpp @@ -2,7 +2,7 @@ * WireGuard implementation for ESP32 Arduino by Kenta Ida (fuga@fugafuga.org) * SPDX-License-Identifier: BSD-3-Clause */ -#include "WireGuard.hpp" +#include "WireGuard-ESP32.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h"