Skip to content

Commit 86d3e6f

Browse files
committed
Nicla Vision section started
1 parent fe5d347 commit 86d3e6f

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

content/hardware/06.nicla/boards/nicla-sense-env/tutorials/03.elevator-monitoring-application-note/content.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ This diagram shows how the components are connected.
7878
- The Modulino Pixels is wired to the Portenta Mid Carrier using the Qwiic cable and fixed with the included screws and nuts.
7979
- The Nicla Vision and the Nicla Sense Env are wired to the Mid Carrier Proto Shield using ESLOV cables.
8080

81+
### Powering Options
82+
8183
To power the project you can use the terminal block of the Portenta Mid Carrier, the USB-C connector of the Portenta H7 or the barrel jack of the Mid Carrier Proto Shield.
8284

8385
![Powering options](assets/power-options.png)
@@ -108,6 +110,8 @@ We are going to use the **Relative Air Quality** range because it will give us a
108110

109111
![Relative Air Quality table](assets/AQI.png)
110112

113+
To complement the environment monitoring we are going to use also the **HS4001** temperature and humidity sensor of the Nicla Sense Env.
114+
111115
### Visual Air Quality Feedback
112116

113117
The system features a real-time visual feedback to warn the occupants of the elevator so they know the current air quality status in any time and take the right preventive measures.
@@ -217,7 +221,7 @@ void setup() {
217221
}
218222
```
219223

220-
In the `loop()` function, the Nicla Sense Env sensores are read every 10 seconds, the people count is requested to the Nicla Vision and the Cloud connection is updated.
224+
In the `loop()` function, the Nicla Sense Env sensors are read every 10 seconds, the people count is requested to the Nicla Vision and the Cloud connection is updated.
221225

222226
```arduino
223227
void loop() {
@@ -252,8 +256,12 @@ We also control the Modulino Pixels color based on the IAQ and update the cloud
252256

253257
The `getPeopleCount()` function creates an I2C request asking for the people detected by the Nicla Vision.
254258

259+
***You can download the complete example code for the Portenta H7 [here](assets/Smart_elevator_Portenta_h7.zip)***
260+
255261
### Nicla Vision Code
256262

263+
The people counting feature of the project is achieved by the Nicla Vision running a FOMO face detection model. The
264+
257265
### Arduino Cloud Dashboard
258266

259267
### Complete Example Sketch

0 commit comments

Comments
 (0)