Arduino library
Last updated
Was this helpful?
Last updated
Was this helpful?
Impulses can be deployed as an Arduino library. This packages all of your signal processing blocks, configuration and learning blocks up into a single package. You can include this package in your own sketches to run the impulse locally. In this tutorial, you'll export an impulse, and integrate the impulse in a sketch to classify sensor data.
This tutorial should work on most Arm-based Arduino development boards with at least 64K of RAM, like the , and the .
In October 2022, we also added support for . It has been tested with the ESP-EYE and the ESP32-CAM AI Thinker.
ESP32 compatibility
ESP32 sketches are tested with 2.0.4 ESP32 Arduino Core https://github.com/espressif/arduino-esp32/releases/tag/2.0.4
For the Arduino Nicla Voice, refer to the .
Navigate further down this page, on the section to see how to setup Edge Impulse-compatible boards.
Make sure you followed one of the following tutorials, and have a trained impulse:
.
.
.
(only for boards with built-in IMU sensor).
.
Also, install the following software:
Head over to your Edge Impulse project, and go to Deployment.
From here you can create the full library which contains the impulse and all external required libraries. Select Arduino library and click Build to create the library. This will download the arduino-compatible .zip
file:
Before starting to write code with your custom logic, make sure your impulse runs as expected on your board. This will ensure that you can compile the generated Arduino library containing your impulse and that the inference results are correct.
To do so, add the library and open an example, open the Arduino IDE and:
Choose Sketch > Include Library > Add .ZIP library....
Select the ZIP file, and then click the Choose button.
Then, load an example by going to File > Examples > Your project name - Edge Impulse > static_buffer > static_buffer.
In some configurations, it can be needed to restart Arduino IDE to see the examples.
Voila. You now have an example application that loads your impulse.
With the project ready it's time to verify that the application works. Head back to the studio and click on Live classification. Then load a validation sample, and click on a row under 'Detailed result'.
To verify that the local application classifies the same, we need the raw features for this timestamp. To do so click on the 'Copy to clipboard' button next to 'Raw features'. This will copy the raw values from this validation file, before any signal processing or inferencing happened.
In the sketch paste the raw features inside the static const float features[]
definition, for example:
For example:
Then, select the port that your board is connected to in the Arduino IDE menu: Tools > Port > your Arduino board.
Then click Upload in the Arduino IDE to build and flash the application.
To see the output of the impulse, open the serial monitor from the Arduino IDE via Tools > Serial monitor, and selecting baud rate 115,200.
This will run the signal processing pipeline, and then classify the output:
Which matches the values we just saw in the studio. You now have your impulse running on your Arduino development board!
We also provide examples for all the officially supported targets that include sampling the raw features from the onboard sensors.
To use them, make sure to install the right development board under Tools->Boards->Boards Manager
. We officially support:
Arduino Nano 33 BLE Sense
For the Arduino Nano 33 BLE Sense, install the following board:
Arduino Portenta H7
For the Arduino Portenta H7, make sure to install the Arduino Mbed OS Portenta Boards v2.8.0 and to select the Arduino Portenta H7 (M7 core) board and the Flash Split 2 MB M7 + M4 in SDRAM:
Arduino Nicla boards
For the Arduino Nicla Vision and the Arduino Nicla Sense ME, install the following board:
Espressif ESP32
For the ESP32 boards, we officially support the ESP-EYE. Other boards have been tested such as the ESP32-CAM AI Thinker. To install ESP32 boards, go to Arduino->Preferences and add the following link to the additional boards manager URLs: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
. Then install the ESP32 boards from the board manager menu.
Make sure to enable PSRAM if you need to run image-based models (image classification or FOMO).
The following settings should work with the ESP-EYE and the ESP32-CAM AI-Thinker:
Board Selection: ESP32 Dev Module
PSRAM: Enabled
Upload Speed: 115200
By default, the esp32-camera sketch is configured to work with the ESP-EYE. To change the camera model replace:
by
If you see the following error:
When using Arduino-ESP32 core v3.x, you may encounter a compilation error related to initializer clauses. To fix this, ensure that either all initializer values in data_dims_t structs are designated or none of them are. For details, refer to the fixes in conv.cpp and depthwise_conv.cpp within the model code.
Exported libraries are automatically versioned, but it's possible that the Arduino IDE gets confused on which version to use leading to an error like: Multiple libraries were found for ...
. You can delete old versions of the libraries to mitigate this. The libraries are located at:
Windows: My Documents > Arduino > libraries
macOS: ~/Documents/Arduino/libraries/
Linux: ~/sketchbook/libraries
Some users have indicated that this issue can be solved by reinstalling the Arduino IDE.
This error can be seen while compiling for a SAMD21-based target. You will need to add the standard library in your sketch:
If the predictions are not properly printed, e.g.:
Then your printing library does not support printing floating point numbers (this happens for example on the Arduino MKR WAN 1300). You can get around this by converting the predictions to integers. E.g.:
Where possible the signal processing code utilizes the vector extensions on your platform, but these are not enabled on all platforms. If these are not enabled we fall back to a software implementation which is slower. We don't enable these on all platforms because the wide variety of platform and core versions Arduino supports, but you can see enable them for your platform by adding the following code on the first line of your sketch, before any includes (only works on Arm cores):
If this still does not work you need to edit the src/edge-impulse-sdk/dsp/config.hpp
file in the library and add, before #ifndef EIDSP_USE_CMSIS_DSP
:
If you have a target that ships on old versions of CMSIS Core (like the SAMD21 targets) you might need to also declare some new macros, e.g.:
This error is usually thrown when the list of object files to compile exceeds Windows max number of characters (32k) in a command line.
Note: This issue is reportedly fixed in Arduino CLI v0.14 and in the Arduino IDE 1.8.15 and above.
If updating your Arduino IDE does not work you can overcome this issue by downloading the platform.local.txt below for your target:
Make sure the vision shield is present.
You need to put the board in its bootloader mode. Double-press and the RESET button before flashing the board.
It means that the axis names are different than the ones provided in the default example. To fix it, you can modify the eiSensors nicla_sensors[]
(near line 70) in the sketch example to add your custom names. e.g.:
.
A demonstration on how to plug sensor values into the classifier can be found here: .
the ,
the ,
the ,
the
the .
You can find other camera model pin definitions .
You may be using an incompatible version of the ESP32 Core. Please revert to 2.0.4 this is also noted in our
see the following forum post for more information
If you're compiling on a SAMD21-based target, you'll see the above error. This is a in the Arduino core for the SAMD21. If you apply the the issue will go away.
. Copy this file under the Arduino mbed directory, i.e: C:\Users\MYUSER\AppData\Local\Arduino15\packages\arduino\hardware\mbed\1.1.4\
or C:\Users\MYUSER\AppData\Local\Arduino15\packages\arduino\hardware\mbed_nano\2.1.0\
. Copy this file under the Arduino SAMD directory, i.e: C:\Users\MYUSER\AppData\Local\Arduino15\packages\arduino\hardware\samd\1.8.9\
. Copy this file under the Arduino Adafruit SAMD directory, i.e: C:\Users\MYUSER\AppData\Local\Arduino15\packages\adafruit\hardware\samd\1.6.3\
. Copy this file under the Arduino ESP32 directory, i.e: C:\Users\MYUSER\AppData\Local\Arduino15\packages\esp32\hardware\esp32\1.0.4\
. Copy this file under the Arduino STM32 directory, i.e: C:\Users\MYUSER\AppData\Local\Arduino15\packages\esp32\hardware\stm32\1.9.0\