Skip to content

Commit

Permalink
Fix that the library fails to build due to wrong header name.
Browse files Browse the repository at this point in the history
  • Loading branch information
ciniml committed Jul 19, 2021
1 parent 2fd7cf0 commit 38ed4af
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions examples/uptime_post/uptime_post.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
#include <WireGuard-ESP32.h>
#include <HTTPClient.h>

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
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=WireGuard-ESP32
version=0.1.0
version=0.1.1
author=Kenta Ida
maintainer=Kenta Ida <fuga@fugafuga.org>
sentence=WireGuard implementation for Arduino ESP32
Expand Down
2 changes: 1 addition & 1 deletion src/WireGuard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 38ed4af

Please sign in to comment.