Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 6ff8d0f

Browse files
bump dist to 2.0.9
1 parent c9f642b commit 6ff8d0f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

‎library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "git",
77
"url": "https://github.com/eloquentarduino/EloquentArduino"
88
},
9-
"version": "2.0.8",
9+
"version": "2.0.9",
1010
"authors": {
1111
"name": "Simone Salerno",
1212
"url": "https://github.com/eloquentarduino"

‎library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EloquentArduino
2-
version=2.0.8
2+
version=2.0.9
33
author=Simone Salerno <support@eloquentarduino.com>
44
maintainer=Simone Salerno <support@eloquentarduino.com>
55
sentence=An eloquent interface to common Arduino patterns, data structures and algorithms

‎src/eloquent/networking/wifi/WifiScanner.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ namespace Eloquent {
7070
* @param i
7171
* @return
7272
*/
73-
String ssidAt(uint8_t i) {
73+
virtualString ssidAt(uint8_t i) {
7474
return WiFi.SSID(i);
7575
}
7676

@@ -90,7 +90,7 @@ namespace Eloquent {
9090
* @param i
9191
* @return
9292
*/
93-
String macAt(uint8_t i) {
93+
virtualString macAt(uint8_t i) {
9494
return WiFi.BSSIDstr(i);
9595
}
9696

@@ -110,7 +110,7 @@ namespace Eloquent {
110110
* @param i
111111
* @return
112112
*/
113-
int rssiAt(uint8_t i) {
113+
virtualint rssiAt(uint8_t i) {
114114
return WiFi.RSSI(i);
115115
}
116116

@@ -119,7 +119,7 @@ namespace Eloquent {
119119
* @param i
120120
* @return
121121
*/
122-
String idAt(uint8_t i) {
122+
virtualString idAt(uint8_t i) {
123123
return useMac ? macAt(i) : ssidAt(i);
124124
}
125125

@@ -129,7 +129,7 @@ namespace Eloquent {
129129
* @param stream
130130
*/
131131
template<typename Stream>
132-
void printAsJson(Stream& stream) {
132+
virtualvoid printAsJson(Stream& stream) {
133133
stream.print('{');
134134

135135
for (uint8_t i = 0; i < numNetworks; i++) {

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /