Skip to content

Commit 6c6d1aa

Browse files
committed
Second batch fix
1 parent be932c5 commit 6c6d1aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/tutorials/projects/control-two-relays-over-the-internet/control-two-relays-over-the-internet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Serial.println("LED on V1: on");
157157

158158
Before you can get everything up and running you should have filled the **arduino_secrets.h** piece of code with the auth token got by email and the credentials to access the internet over GPRS. With this data, the sketch can be uploaded to the MKR GSM 1400.
159159

160-
Launch the Blynk application on your smartphone, then select the project created with the QR code and tap on the "play" icon on the right of the top bar. You should see the icon of a small board with a red blob on it: it is the status of the connection with your board. Load the sketch and wait for the connection process to happen. You may want to monitor it trhough the Serial Monitor.
160+
Launch the Blynk application on your smartphone, then select the project created with the QR code and tap on the "play" icon on the right of the top bar. You should see the icon of a small board with a red blob on it: it is the status of the connection with your board. Load the sketch and wait for the connection process to happen. You may want to monitor it through the Serial Monitor.
161161

162162
Anyway, when the board connects to the Blynk server, the red blob should disappear and on the interface you should start to see the virtual LED blinking with a slow pace. You are connected!
163163

content/tutorials/projects/localize-your-board-with-an-sms/localize-your-board-with-an-sms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The `measureLocation()` queries the module to retry the coordinates by cellular
7373
//global variable used for location management
7474
String GSMlatitude = "0.000000";
7575
String GSMlongitude = "0.000000";
76-
// This function use the location's APIs to get the device coordinates and update the globa variable if all the requirement are satisfied
76+
// This function use the location's APIs to get the device coordinates and update the global variable if all the requirement are satisfied
7777
void measureLocation() {
7878
unsigned long timeout = millis();
7979
while (millis() - timeout < 45000) {

0 commit comments

Comments
 (0)