From 19e6ff5bee4df778b2d2c679a994440d7b6ad178 Mon Sep 17 00:00:00 2001 From: Ruben Kertesz Date: Sun, 13 Mar 2022 22:12:31 -0400 Subject: [PATCH 1/6] Update content.md with clearer instructions The instructions to install the library were very sparse. I learned much more from the README file in the pololu repo (https://github.com/pololu/vl53l1x-arduino). I pulled similar language into this document to help others who come after me. --- .../nicla-vision/tutorials/proximity/content.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md index c02536b8de..85be02c1a1 100644 --- a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md +++ b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md @@ -41,7 +41,16 @@ The goals of this project are: ![Arduino Nicla Vision - Time of Flight sensor](assets/nicla-vision-tof.png) -To make sure that the sketch works properly, the latest versions of the **Arduino mbed Core** and the **VL53L1X library** needs to be installed. The **Arduino mbed Core** can be found in the **boards manager...** and the **VL53L1X library** can be found in the **Library manager**, both can be found inside the Arduino IDE. +To make sure that the sketch works properly, the latest versions of the **Arduino mbed Core** and the **VL53L1X library** needs to be installed. Both can be found inside the Arduino IDE. +The **Arduino mbed Core** can be found in the **boards manager...**. +The **VL53L1X library** can be found in the **Library manager**, + +If you are using version 1.6.2 or later of the Arduino software (IDE), you can use the Library Manager to install the VL53L1X library: +In the Arduino IDE, open the "Sketch" menu, select "Include Library", then "Manage Libraries...". +Search for "VL53L1X". +Click the VL53L1X entry in the list, authored by Pololu. +Click "Install". + ### Include the Needed Libraries and Objects Declaration @@ -170,4 +179,4 @@ void loop() { ## Conclusion -In this tutorial we went through how to get readings from the ToF sensor. And how use these readings to change how the built-in LED behaves. At the end of the tutorial you can also find a reference list for the ToF library. \ No newline at end of file +In this tutorial we went through how to get readings from the ToF sensor. And how use these readings to change how the built-in LED behaves. At the end of the tutorial you can also find a reference list for the ToF library. From d69a31531a756e71e38ead91445d7757bb96602d Mon Sep 17 00:00:00 2001 From: Ruben Kertesz Date: Tue, 15 Mar 2022 12:20:21 -0400 Subject: [PATCH 2/6] Update content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md committing suggestion by sebromero Co-authored-by: Sebastian Romero --- .../05.nicla/boards/nicla-vision/tutorials/proximity/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md index 85be02c1a1..69c94048be 100644 --- a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md +++ b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md @@ -49,7 +49,7 @@ If you are using version 1.6.2 or later of the Arduino software (IDE), you can u In the Arduino IDE, open the "Sketch" menu, select "Include Library", then "Manage Libraries...". Search for "VL53L1X". Click the VL53L1X entry in the list, authored by Pololu. -Click "Install". +Click "Install". More detailed instructions on how to install a library can be found [here](/learn/starting-guide/software-libraries). ### Include the Needed Libraries and Objects Declaration From 313250008bee7fbf53d5249356d3d7bbd00a6ed9 Mon Sep 17 00:00:00 2001 From: Sebastian Romero Date: Wed, 16 Mar 2022 16:37:16 +0100 Subject: [PATCH 3/6] Update content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md Co-authored-by: Josefine Hansson <66409231+jhansson-ard@users.noreply.github.com> --- .../boards/nicla-vision/tutorials/proximity/content.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md index 69c94048be..dc4f294cc8 100644 --- a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md +++ b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md @@ -42,7 +42,8 @@ The goals of this project are: ![Arduino Nicla Vision - Time of Flight sensor](assets/nicla-vision-tof.png) To make sure that the sketch works properly, the latest versions of the **Arduino mbed Core** and the **VL53L1X library** needs to be installed. Both can be found inside the Arduino IDE. -The **Arduino mbed Core** can be found in the **boards manager...**. + +- The **Arduino mbed Core** can be found in the **boards manager...**. The **VL53L1X library** can be found in the **Library manager**, If you are using version 1.6.2 or later of the Arduino software (IDE), you can use the Library Manager to install the VL53L1X library: From 5234de690fedd221b2c3b98d017dcaabec0823d8 Mon Sep 17 00:00:00 2001 From: Sebastian Romero Date: Wed, 16 Mar 2022 16:37:24 +0100 Subject: [PATCH 4/6] Update content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md Co-authored-by: Josefine Hansson <66409231+jhansson-ard@users.noreply.github.com> --- .../05.nicla/boards/nicla-vision/tutorials/proximity/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md index dc4f294cc8..97124c47b7 100644 --- a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md +++ b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md @@ -44,7 +44,7 @@ The goals of this project are: To make sure that the sketch works properly, the latest versions of the **Arduino mbed Core** and the **VL53L1X library** needs to be installed. Both can be found inside the Arduino IDE. - The **Arduino mbed Core** can be found in the **boards manager...**. -The **VL53L1X library** can be found in the **Library manager**, +- The **VL53L1X library** can be found in the **Library manager**, If you are using version 1.6.2 or later of the Arduino software (IDE), you can use the Library Manager to install the VL53L1X library: In the Arduino IDE, open the "Sketch" menu, select "Include Library", then "Manage Libraries...". From 02cd7a65fcec83f8e53ab73d8d18f22348406389 Mon Sep 17 00:00:00 2001 From: Sebastian Romero Date: Wed, 16 Mar 2022 16:38:06 +0100 Subject: [PATCH 5/6] Apply suggestions from review Co-authored-by: Josefine Hansson <66409231+jhansson-ard@users.noreply.github.com> --- .../boards/nicla-vision/tutorials/proximity/content.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md index 97124c47b7..b07c6eeb1b 100644 --- a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md +++ b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md @@ -47,9 +47,10 @@ To make sure that the sketch works properly, the latest versions of the **Arduin - The **VL53L1X library** can be found in the **Library manager**, If you are using version 1.6.2 or later of the Arduino software (IDE), you can use the Library Manager to install the VL53L1X library: -In the Arduino IDE, open the "Sketch" menu, select "Include Library", then "Manage Libraries...". -Search for "VL53L1X". -Click the VL53L1X entry in the list, authored by Pololu. + +- In the Arduino IDE, open the "Sketch" menu, select "Include Library", then "Manage Libraries...". +- Search for "VL53L1X". +- Click the VL53L1X entry in the list, authored by Pololu. Click "Install". More detailed instructions on how to install a library can be found [here](/learn/starting-guide/software-libraries). From b96dd269b06dc76c222f3ba180267b8f2823bab6 Mon Sep 17 00:00:00 2001 From: Sebastian Romero Date: Thu, 17 Mar 2022 16:42:33 +0100 Subject: [PATCH 6/6] Update content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md --- .../05.nicla/boards/nicla-vision/tutorials/proximity/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md index b07c6eeb1b..4a132c8c72 100644 --- a/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md +++ b/content/hardware/05.nicla/boards/nicla-vision/tutorials/proximity/content.md @@ -51,7 +51,7 @@ If you are using version 1.6.2 or later of the Arduino software (IDE), you can u - In the Arduino IDE, open the "Sketch" menu, select "Include Library", then "Manage Libraries...". - Search for "VL53L1X". - Click the VL53L1X entry in the list, authored by Pololu. -Click "Install". More detailed instructions on how to install a library can be found [here](/learn/starting-guide/software-libraries). +- Click "Install". More detailed instructions on how to install a library can be found [here](/learn/starting-guide/software-libraries). ### Include the Needed Libraries and Objects Declaration