Skip to content

Commit 12c3747

Browse files
committed
Fixed some typos for Inkplate 7
1 parent 7c5a9eb commit 12c3747

File tree

7 files changed

+10
-12
lines changed

7 files changed

+10
-12
lines changed

examples/Inkplate7/Advanced/Communication/Inkplate7_EasyC/Inkplate7_EasyC.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Inkplate7_EasyC example for Soldered Inkplate 7
3-
For this example you will need a USB-C cable, Inkplate 6COLOR,
3+
For this example you will need a USB-C cable, Inkplate 7,
44
BME680 sensor with easyC connector on it: https://soldered.com/product/enviromental-air-quality-sensor-bme680-breakout/
55
and an easyC cable: https://soldered.com/product/easyc-cable-20cm/
66
Select "Soldered Inkplate7" from Tools -> Board menu.

examples/Inkplate7/Advanced/DeepSleep/Inkplate7_Wake_Up_Button/Inkplate7_Wake_Up_Button.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ void setup()
5353
// Enable wakeup from deep sleep on gpio 36 (wake button)
5454
esp_sleep_enable_ext0_wakeup(GPIO_NUM_36, 0);
5555

56-
57-
5856
// Start deep sleep (this function does not return). Program stops here.
5957
esp_deep_sleep_start();
6058
}

examples/Inkplate7/Advanced/WEB_WiFi/Inkplate7_HTTPS_POST_Request/Inkplate7_HTTPS_POST_Request.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void setup()
6060

6161
display.setTextSize(2);
6262
display.setTextColor(INKPLATE7_RED);
63-
display.println("Open Serial Monitor at 115200 baud rate to see what'shappening");
63+
display.println("Open Serial Monitor at 115200 baud rate to see what's happening");
6464
display.display();
6565

6666
// Connect to WiFi

examples/Inkplate7/Advanced/WEB_WiFi/Inkplate7_HTTP_POST_Request/Inkplate7_HTTP_POST_Request.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Inkplate display;
3636
WiFiClient client;
3737

3838
// Here you can change the interval of sending POST requests (minimum 15 seconds with a free license)
39-
#define POSTING_INTERVAL_IN_SESCS 20
39+
#define POSTING_INTERVAL_IN_SECS 20
4040

4141
// Enter your WiFi credentials
4242
const char *ssid = "";
@@ -93,8 +93,8 @@ void setup()
9393

9494
void loop()
9595
{
96-
// Every POSTING_INTERVAL_IN_SESCS seconds make the POST request
97-
if ((unsigned long)(millis() - lastConnectionTime) > POSTING_INTERVAL_IN_SESCS * 1000LL)
96+
// Every POSTING_INTERVAL_IN_SECS seconds make the POST request
97+
if ((unsigned long)(millis() - lastConnectionTime) > POSTING_INTERVAL_IN_SECS * 1000LL)
9898
{
9999
// A function that does a request
100100
sendRequest();

examples/Inkplate7/Advanced/WEB_WiFi/Inkplate7_HTTP_Request/Inkplate7_HTTP_Request.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Don't have "Soldered Inkplate7" option? Follow our tutorial and add it:
66
https://soldered.com/learn/add-inkplate-6-board-definition-to-arduino-ide/
77
8-
This example will show you how to connect to WiFi network, get data from Internet and display that data on epaper.
8+
This example will show you how to connect to WiFi network, get data from Internet and display that data on ePaper.
99
This example is NOT on to how to parse HTML data from Internet - it will just print HTML on the screen.
1010
You can see what's happening on the Serial monitor at the 115200 baud rate.
1111

examples/Inkplate7/Advanced/WEB_WiFi/Inkplate7_Show_Pictures_From_Web/Inkplate7_Show_Pictures_From_Web.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void setup()
5353
// bitmaps from certain softwares. Forth parameter will dither the image.
5454
if (!display.drawImage("https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate7/Advanced/WEB_WiFi/Inkplate7_Show_Pictures_From_Web/hearts_mono.bmp", 0, 0, true, false))
5555
{
56-
// If is something failed (wrong filename or wrong bitmap format), write error message on the screen.
56+
// If something failed (wrong filename or wrong bitmap format), write error message on the screen.
5757
// REMEMBER! You can only use Windows Bitmap file with color depth of 1, 4, 8 or 24 bits with no compression!
5858
display.println("Image open error");
5959
display.display();
@@ -63,7 +63,7 @@ void setup()
6363

6464
if (!display.drawImage("https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate7/Advanced/WEB_WiFi/Inkplate7_Show_Pictures_From_Web/roses.bmp", 0, 0, true, false))
6565
{
66-
// If is something failed (wrong filename or wrong bitmap format), write error message on the screen.
66+
// If something failed (wrong filename or wrong bitmap format), write error message on the screen.
6767
// REMEMBER! You can only use Windows Bitmap file with color depth of 1, 4, 8 or 24 bits with no compression!
6868
display.println("Image open error");
6969
display.display();
@@ -79,7 +79,7 @@ void setup()
7979
// image.
8080
if (!display.drawImage("https://raw.githubusercontent.com/SolderedElectronics/Inkplate-Arduino-library/dev/examples/Inkplate7/Advanced/WEB_WiFi/Inkplate7_Show_Pictures_From_Web/flower.jpg", 0, 0, true, false))
8181
{
82-
// If is something failed (wrong filename or format), write error message on the screen.
82+
// If something failed (wrong filename or format), write error message on the screen.
8383
display.println("Image open error");
8484
display.display();
8585
}

examples/Inkplate7/Advanced/WEB_WiFi/Inkplate7_Web_Server/Inkplate7_Web_Server.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void updatePaper()
115115
display.print(serverIP);
116116
display.println('/');
117117
display.println();
118-
display.fillRect(10, 240, 620, 4, BLACK);
118+
display.fillRect(10, 240, 620, 4, INKPLATE7_BLACK);
119119
display.setCursor(0, 250);
120120
display.setTextColor(INKPLATE7_BLACK);
121121
display.println("User text:"); // Print out what user typed in web page

0 commit comments

Comments
 (0)