Skip to content

Commit 281f828

Browse files
committed
Fixed some comments
1 parent 9d42974 commit 281f828

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

examples/Inkplate10/Advanced/WEB_WiFi/Inkplate10_Show_JPG_With_HTTPClient/Inkplate10_Show_JPG_With_HTTPClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Inkplate display(INKPLATE_1BIT);
3232
char *ssid = ""; // Your WiFi SSID
3333
char *pass = ""; // Your WiFi password
3434

35-
// Optionally
35+
// Add the URL of the image you want to show on Inkplate
3636
String url = "https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate10/Advanced/WEB_WiFi/Inkplate10_Show_JPG_With_HTTPClient/image.jpg";
3737

3838
/***********************************************/

examples/Inkplate2/Advanced/WEB_WiFi/Inkplate2_Show_JPG_With_HTTPClient/Inkplate2_Show_JPG_With_HTTPClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Inkplate display;
3131
char *ssid = ""; // Your WiFi SSID
3232
char *pass = ""; // Your WiFi password
3333

34-
// Optionally
34+
// Add the URL of the image you want to show on Inkplate
3535
String url = "https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate2/Advanced/WEB_WiFi/Inkplate2_Show_JPG_With_HTTPClient/image.jpg";
3636

3737
/***********************************************/

examples/Inkplate4/Advanced/WEB_WiFi/Inkplate4_Show_JPG_With_HTTPClient/Inkplate4_Show_JPG_With_HTTPClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Inkplate display;
3131
char *ssid = ""; // Your WiFi SSID
3232
char *pass = ""; // Your WiFi password
3333

34-
// Optionally
34+
// Add the URL of the image you want to show on Inkplate
3535
String url = "https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate4/Advanced/WEB_WiFi/Inkplate4_Show_JPG_With_HTTPClient/image.jpg";
3636

3737
/***********************************************/

examples/Inkplate5/Advanced/WEB_WiFi/Inkplate5_Show_JPG_With_HTTPClient/Inkplate5_Show_JPG_With_HTTPClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Inkplate display(INKPLATE_1BIT);
3131
char *ssid = ""; // Your WiFi SSID
3232
char *pass = ""; // Your WiFi password
3333

34-
// Optionally
34+
// Add the URL of the image you want to show on Inkplate
3535
String url = "https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate5/Advanced/WEB_WiFi/Inkplate5_Show_JPG_With_HTTPClient/image.jpg";
3636

3737
/***********************************************/

examples/Inkplate6/Advanced/WEB_WiFi/Inkplate6_Show_JPG_With_HTTPClient/Inkplate6_Show_JPG_With_HTTPClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Inkplate display(INKPLATE_1BIT);
3232
char *ssid = ""; // Your WiFi SSID
3333
char *pass = ""; // Your WiFi password
3434

35-
// Optionally
35+
// Add the URL of the image you want to show on Inkplate
3636
String url = "https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate6/Advanced/WEB_WiFi/Inkplate6_Show_JPG_With_HTTPClient/image.jpg";
3737

3838
/***********************************************/

examples/Inkplate6COLOR/Advanced/WEB_WiFi/Inkplate6COLOR_Show_JPG_With_HTTPClient/Inkplate6COLOR_Show_JPG_With_HTTPClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Inkplate display;
3131
char *ssid = ""; // Your WiFi SSID
3232
char *pass = ""; // Your WiFi password
3333

34-
// Optionally
34+
// Add the URL of the image you want to show on Inkplate
3535
String url = "https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate6COLOR/Advanced/WEB_WiFi/Inkplate6COLOR_Show_JPG_With_HTTPClient/image.jpg";
3636

3737
/***********************************************/

examples/Inkplate6PLUS/Advanced/Communications/Inkplate6PLUS_Bluetooth_Peripheral_Mode/Inkplate6PLUS_Bluetooth_Peripheral_Mode.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Inkplate6PLUS_Bluetooth_Peripheral_Mode example for Soldered Inkplate 6Plus
3-
For this example you will need USB cable and an Inkplate 6
3+
For this example you will need USB cable and an Inkplate 6PLUS
44
Select "e-radionica Inkplate 6Plus" or "Soldered Inkplate 6Plus" from Tools -> Board menu.
55
Don't have "e-radionica Inkplate 6Plus" or "Soldered Inkplate 6Plus" option? Follow our tutorial and add it:
66
https://soldered.com/learn/add-inkplate-6-board-definition-to-arduino-ide/

examples/Inkplate6PLUS/Advanced/WEB_WiFi/Inkplate6PLUS_Show_JPG_With_HTTPClient/Inkplate6PLUS_Show_JPG_With_HTTPClient.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ Inkplate display(INKPLATE_1BIT);
2828

2929
/**************** CHANGE HERE ******************/
3030

31-
char *ssid = ""; // Your WiFi SSID
32-
char *pass = ""; // Your WiFi password
31+
char *ssid = "Soldered"; // Your WiFi SSID
32+
char *pass = "dasduino"; // Your WiFi password
3333

34-
// Optionally
34+
// Add the URL of the image you want to show on Inkplate
3535
String url = "https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate6PLUS/Advanced/WEB_WiFi/Inkplate6PLUS_Show_JPG_With_HTTPClient/image.jpg";
3636

3737
/***********************************************/

examples/Inkplate7/Advanced/WEB_WiFi/Inkplate7_Show_JPG_With_HTTPClient/Inkplate7_Show_JPG_With_HTTPClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Inkplate display;
3131
char *ssid = ""; // Your WiFi SSID
3232
char *pass = ""; // Your WiFi password
3333

34-
// Optionally
34+
// Add the URL of the image you want to show on Inkplate
3535
String url = "https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate7/Advanced/WEB_WiFi/Inkplate7_Show_JPG_With_HTTPClient/image.jpg";
3636

3737
/***********************************************/

0 commit comments

Comments
 (0)