Skip to content

Commit 38ed4af

Browse files
committed
Fix that the library fails to build due to wrong header name.
1 parent 2fd7cf0 commit 38ed4af

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

examples/uptime_post/uptime_post.ino

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
#include <WireGuard-ESP32.h>
33
#include <HTTPClient.h>
44

5-
char ssid[] = "ds9";
6-
char password[] = "hogeFugapiyo";
5+
// WiFi configuration --- UPDATE this configuration for your WiFi AP
6+
char ssid[] = "ssid";
7+
char password[] = "password";
78

89
// WireGuard configuration --- UPDATE this configuration from JSON
910
char private_key[] = "(Private Key) "; // [Interface] PrivateKey

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=WireGuard-ESP32
2-
version=0.1.0
2+
version=0.1.1
33
author=Kenta Ida
44
maintainer=Kenta Ida <[email protected]>
55
sentence=WireGuard implementation for Arduino ESP32

src/WireGuard.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* WireGuard implementation for ESP32 Arduino by Kenta Ida ([email protected])
33
* SPDX-License-Identifier: BSD-3-Clause
44
*/
5-
#include "WireGuard.hpp"
5+
#include "WireGuard-ESP32.h"
66

77
#include "freertos/FreeRTOS.h"
88
#include "freertos/task.h"

0 commit comments

Comments
 (0)