Skip to content

Commit

Permalink
Merge pull request #84 from ayushsharma82/dev
Browse files Browse the repository at this point in the history
v2.0.2
  • Loading branch information
ayushsharma82 authored Jun 3, 2024
2 parents e6bbfd6 + 62b56b3 commit bf47ffc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
<br/>

## Features

- 📜 Log, monitor or debug your firmware/product with ease
- 🔥 A powerful tool that lives in your microcontroller itself
- 🛜 Access it anytime & from anywhere within same network (LAN)
- 🎷 No need to learn HTML/CSS/JS
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"maintainer": true
}
],
"version": "2.0.1",
"version": "2.0.2",
"frameworks": "arduino",
"platforms": ["espressif8266", "espressif32"],
"dependencies": [
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=WebSerial
version=2.0.1
version=2.0.2
author=Ayush Sharma
category=Communication
maintainer=Ayush Sharma <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/WebSerial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ void WebSerialClass::begin(AsyncWebServer *server, const char* url) {
_ws = new AsyncWebSocket("/wserial");

if (_authenticate) {
_ws->setAuthentication(_username, _password);
_ws->setAuthentication(_username.c_str(), _password.c_str());
}

// Webpage Handler
Expand Down

0 comments on commit bf47ffc

Please sign in to comment.