Skip to content

Commit bf47ffc

Browse files
Merge pull request #84 from ayushsharma82/dev
v2.0.2
2 parents e6bbfd6 + 62b56b3 commit bf47ffc

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
<br/>
1616

1717
## Features
18+
19+
- 📜 Log, monitor or debug your firmware/product with ease
1820
- 🔥 A powerful tool that lives in your microcontroller itself
1921
- 🛜 Access it anytime & from anywhere within same network (LAN)
2022
- 🎷 No need to learn HTML/CSS/JS

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"maintainer": true
1616
}
1717
],
18-
"version": "2.0.1",
18+
"version": "2.0.2",
1919
"frameworks": "arduino",
2020
"platforms": ["espressif8266", "espressif32"],
2121
"dependencies": [

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=WebSerial
2-
version=2.0.1
2+
version=2.0.2
33
author=Ayush Sharma
44
category=Communication
55
maintainer=Ayush Sharma <[email protected]>

src/WebSerial.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void WebSerialClass::begin(AsyncWebServer *server, const char* url) {
2929
_ws = new AsyncWebSocket("/wserial");
3030

3131
if (_authenticate) {
32-
_ws->setAuthentication(_username, _password);
32+
_ws->setAuthentication(_username.c_str(), _password.c_str());
3333
}
3434

3535
// Webpage Handler

0 commit comments

Comments
 (0)