Skip to content

Commit bbb68ad

Browse files
committed
Update links
1 parent 1ef0fff commit bbb68ad

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

content/learning-paths/embedded-and-microcontrollers/edge/program-and-deployment.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This section helps you create a complete sketch that you can upload onto your Ar
2020
## Step 2: Upload the Arduino Library from Edge Impulse
2121

2222
1. After creating and saving your sketch, go to **Sketch** > **Include Library** > **Add .ZIP Library**.
23-
2. In the file dialog that opens, navigate to the location of the **ZIP file** you exported from Edge Impulse in [Set up your environment](http://localhost:1313/learning-paths/embedded-and-microcontrollers/egde/software_edge_impulse/)
23+
2. In the file dialog that opens, navigate to the location of the **ZIP file** you exported from Edge Impulse in [Set up your environment](/learning-paths/embedded-and-microcontrollers/edge/software-edge-impulse/)
2424
3. Select the **ZIP file** and click **Open**.
2525

2626
## Step 3: Include the Library in Your Sketch
@@ -33,9 +33,9 @@ The libray should be of the form `Name_of_your_library_inferencing.h`
3333

3434
# Code walk-through
3535

36-
Before running the code, it’s important to understand what each part does.
36+
In the example repository, you will find a code snippet which is used as a sketch for the project. Before running the code, it’s important to understand what each part does.
3737

38-
Take a few minutes to read through the comments and logic in the sketch before uploading it to your board. The code can be downloaded [here](jkhkjhjk).
38+
Take a few minutes to read through the comments and logic in the sketch before uploading it to your board. The code is available in the example repository, and below is a walk-through of the steps.
3939

4040
## Include Necessary Libraries and Define Data Structure for Inference
4141

@@ -277,12 +277,12 @@ void print_inference_result(ei_impulse_result_t result) {
277277
```
278278
279279
{{% notice Note %}}
280-
The `ei_printf` command is a custom logging function from the Edge Impulse SDK, used for printing debug or inference-related information to the serial monitor, optimized for embedded systems. It works similarly to `printf` but is tailored for the Edge Impulse environment. You can download the complete [Code_Sample.ino](https://github.com/e-dudzi/Learning-Path.git) and try it out yourself.
280+
The `ei_printf` command is a custom logging function from the Edge Impulse SDK, used for printing debug or inference-related information to the serial monitor, optimized for embedded systems. It works similarly to `printf` but is tailored for the Edge Impulse environment. You can find the complete `Code_Sample.ino` in the example repository and try it out yourself.
281281
{{% /notice %}}
282282
283283
# Run Your Code
284284
285-
Now that you have a good understanding of the code, you should run it on your device. With your **Arduino Nano RP2040** plugged into your computer, and the correct [board and port](http://localhost:1313/learning-paths/embedded-and-microcontrollers/egde/connect-and-set-up-arduino/) selected in the Arduino IDE, follow these steps:
285+
Now that you have a good understanding of the code, you should run it on your device. With your **Arduino Nano RP2040** plugged into your computer, and the correct [board and port](/learning-paths/embedded-and-microcontrollers/egde/connect-and-set-up-arduino/) selected in the Arduino IDE, follow these steps:
286286
287287
#### If you're using the **Upload Button**
288288

content/learning-paths/embedded-and-microcontrollers/edge/software-edge-impulse.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,13 @@ Follow the exact settings in the attached snapshot to complete the configuration
5959

6060
With your device configured, the next step is to **add your dataset** to the project. Click on the **"Add existing data"** button and follow the configuration settings shown in the attached snapshot. This allows you to upload pre-recorded data instead of collecting it live, which can save time during the development phase.
6161

62-
The dataset for this project can be downloaded from the following link: [Download Dataset](https://github.com/e-dudzi/Learning-Path.git). Download the `Dataset.zip` file and extract it on your local machine.
62+
An **example repository** has been set up with some assets to be used throughout this Learning Path. You can clone it with the following command:
6363

64-
For convenience, the dataset has already been split into **training** and **testing**.
64+
```bash
65+
git clone https://github.com/e-dudzi/Learning-Path.git
66+
```
67+
68+
The repository contains a `Dataset.zip` file containing the dataset used in the project. Extract it on your local machine. For convenience, the dataset has already been split into **training** and **testing**.
6569

6670
![example image alt-text#center](images/6.png "Figure 4. Add Existing Data")
6771

@@ -143,7 +147,7 @@ Review these metrics to determine if the model is learning effectively. If neede
143147

144148
![example image alt-text#center](images/15.png "Figure 12. Model Performance")
145149

146-
You can also [download](https://github.com/e-dudzi/Learning-Path.git) a pre-trained model and continue from here.
150+
You can also use the pre-trained model from the example repository.
147151

148152
### Final Step: Deploying the Model
149153

0 commit comments

Comments
 (0)