Skip to content

Commit b7a9896

Browse files
author
Jim Bennett
authoredJun 8, 2021
Lesson 16 (#62)
* Adding content * Update en.json * Update README.md * Update TRANSLATIONS.md * Adding lesson tempolates * Fixing code files with each others code in * Update README.md * Adding lesson 16 * Adding virtual camera * Adding Wio Terminal camera capture * Adding wio terminal code * Adding SBC classification to lesson 16 * Adding challenge, review and assignment
1 parent d98f3cb commit b7a9896

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1506
-45
lines changed
 

‎.vscode/settings.json

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
"geofencing",
1616
"microcontrollers",
1717
"mosquitto",
18+
"photodiode",
19+
"photodiodes",
1820
"sketchnote"
1921
]
2022
}

‎1-getting-started/lessons/4-connect-internet/wio-terminal-mqtt.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Libraries can be installed globally and compiled in if needed, or into a specifi
1414

1515
✅ You can learn more about library management and how to find and install libraries in the [PlatformIO library documentation](https://docs.platformio.org/en/latest/librarymanager/index.html).
1616

17-
### Task
17+
### Task - install the WiFi and MQTT Arduino libraries
1818

1919
Install the Arduino libraries.
2020

@@ -49,7 +49,7 @@ Install the Arduino libraries.
4949
5050
The Wio Terminal can now be connected to WiFi.
5151
52-
### Task
52+
### Task - connect to WiFi
5353
5454
Connect the Wio Terminal to WiFi.
5555
@@ -85,7 +85,7 @@ Connect the Wio Terminal to WiFi.
8585
#include "config.h"
8686
```
8787
88-
This includes header files for the libraries you added earlier, as well as the config header file.
88+
This includes header files for the libraries you added earlier, as well as the config header file. These header files are needed to tell PlatformIO to bring in the code from the libraries. Without explicitly including these header files, some code won't be compiled in and you will get compiler errors.
8989

9090
1. Add the following code above the `setup` function:
9191

@@ -128,7 +128,7 @@ Connect the Wio Terminal to WiFi.
128128

129129
Once the Wio Terminal is connected to WiFi, it can connect to the MQTT broker.
130130

131-
### Task
131+
### Task - connect to MQTT
132132

133133
Connect to the MQTT broker.
134134

0 commit comments

Comments
 (0)