Skip to content

Commit d681105

Browse files
committed
network updates
1 parent e875d60 commit d681105

File tree

10 files changed

+19
-10
lines changed

10 files changed

+19
-10
lines changed

examples/Inkplate10/Projects/Inkplate10_Quotables/Network.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ extern char pass[];
3232
extern Inkplate display;
3333

3434
// Static Json from ArduinoJson library
35-
StaticJsonDocument<30000> doc;
35+
ArduinoJson::StaticJsonDocument<30000> doc; // Still technically deprecated, but clarifies the source
36+
3637

3738
void Network::begin(char *ssid, char *pass)
3839
{

examples/Inkplate2/Projects/Inkplate2_Quotables/Network.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ extern char pass[];
3232
extern Inkplate display;
3333

3434
// Static Json from ArduinoJson library
35-
StaticJsonDocument<30000> doc;
35+
ArduinoJson::StaticJsonDocument<30000> doc; // Still technically deprecated, but clarifies the source
3636

3737
void Network::begin()
3838
{

examples/Inkplate4TEMPERA/Projects/Inkplate4TEMPERA_Quotables/Network.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ extern char pass[];
3232
extern Inkplate display;
3333

3434
// Static Json from ArduinoJson library
35-
StaticJsonDocument<30000> doc;
35+
ArduinoJson::StaticJsonDocument<30000> doc; // Still technically deprecated, but clarifies the source
36+
3637

3738
void Network::begin()
3839
{

examples/Inkplate5/Projects/Inkplate5_Quotables/Network.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ extern char pass[];
3232
extern Inkplate display;
3333

3434
// Static Json from ArduinoJson library
35-
StaticJsonDocument<30000> doc;
35+
ArduinoJson::StaticJsonDocument<30000> doc; // Still technically deprecated, but clarifies the source
36+
3637

3738
void Network::begin(char *ssid, char *pass)
3839
{

examples/Inkplate5V2/Projects/Inkplate5V2_Quotables/Network.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ extern char pass[];
3232
extern Inkplate display;
3333

3434
// Static Json from ArduinoJson library
35-
StaticJsonDocument<30000> doc;
35+
ArduinoJson::StaticJsonDocument<30000> doc; // Still technically deprecated, but clarifies the source
36+
3637

3738
void Network::begin(char *ssid, char *pass)
3839
{

examples/Inkplate6/Projects/Inkplate6_Quotables/Network.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ extern char pass[];
3333
extern Inkplate display;
3434

3535
// Static Json from ArduinoJson library
36-
StaticJsonDocument<30000> doc;
36+
ArduinoJson::StaticJsonDocument<30000> doc; // Still technically deprecated, but clarifies the source
37+
3738

3839
void Network::begin()
3940
{

examples/Inkplate6COLOR/Projects/Inkplate6COLOR_Quotables/Network.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ extern char pass[];
3333
extern Inkplate display;
3434

3535
// Static Json from ArduinoJson library
36-
StaticJsonDocument<30000> doc;
36+
ArduinoJson::StaticJsonDocument<30000> doc; // Still technically deprecated, but clarifies the source
37+
3738

3839
void Network::begin()
3940
{

examples/Inkplate6FLICK/Projects/Inkplate6FLICK_Quotables/Network.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ extern char pass[];
3333
extern Inkplate display;
3434

3535
// Static Json from ArduinoJson library
36-
StaticJsonDocument<30000> doc;
36+
ArduinoJson::StaticJsonDocument<30000> doc; // Still technically deprecated, but clarifies the source
37+
3738

3839
void Network::begin()
3940
{

examples/Inkplate6PLUS/Projects/Inkplate6PLUS_Quotables/Network.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ extern char pass[];
4444
extern Inkplate display;
4545

4646
// Static Json from ArduinoJson library
47-
StaticJsonDocument<30000> doc;
47+
ArduinoJson::StaticJsonDocument<30000> doc; // Still technically deprecated, but clarifies the source
48+
4849

4950
void Network::begin()
5051
{

examples/Inkplate7/Projects/Inkplate7_Quotables/Network.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ extern char pass[];
3131
extern Inkplate display;
3232

3333
// Static Json from ArduinoJson library
34-
StaticJsonDocument<30000> doc;
34+
ArduinoJson::StaticJsonDocument<30000> doc; // Still technically deprecated, but clarifies the source
35+
3536

3637
void Network::begin(char *ssid, char *pass)
3738
{

0 commit comments

Comments
 (0)