DeprecatedIn November 2022, we updated this tutorial to use Arduino IDE 2.0.X. As Arduino IDE 1.18 is still popular in the community and many of you have not had the chance yet to test Arduino’s newest IDE, this page will be kept but won’t be updated with the latest integrations.
Knowledge requiredThis tutorial assumes that you’re familiar with the Arduino IDE, and that you’re comfortable building Arduino sketches. If you’re unfamiliar with these tools you can build binaries directly for your development board from the Deployment page in the studio.
Prerequisites
Make sure you followed one of the following tutorials, and have a trained impulse:- Recognizing sounds from audio.
- Keyword spotting.
- Image classification.
- Building a continuous motion recognition system (only for boards with built-in IMU sensor).
- FOMO: Object detection for constrained devices.
Boards manager
Make sure to install the right development board underTools->Boards->Boards Manager
. We officially support the Arduino Nano 33 BLE Sense, Arduino Portenta H7 + Vision shield, Arduino Nicla Vision, Arduino Nicla Sense ME and the Espressif ESP-EYE (ESP32).
-
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.Link ESP32 boards resources
Add espressif ESP32 boards
Deploying your impulse
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. Then download and extract the.zip
file.
Then to add the library and open an example, open the Arduino IDE and:
-
Choose Sketch > Include Library > Add .ZIP library….
Include .zip library
-
Find the folder (do not go inside the folder), and select Choose.
Choose folder
-
Then, load an example by going to File > Examples > Your project name - Edge Impulse > static_buffer.
Select example
-
Voila. You now have an example application that loads your impulse.
Sketch example
Running the 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’.
Selecting the row with timestamp '320' under 'Detailed result'.

Copying the raw features.
static const float features[]
definition, for example:
Seeing the output
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:Connecting sensors?
A demonstration on how to plug sensor values into the classifier can be found here: Data forwarder - classifying data (Arduino).Troubleshooting
Multiple libraries were found for …
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
error: reference to ‘SerialUSB’ is ambiguous
This error shows up on the Arduino Nano 33 BLE Sense when using the Arduino Core v1.1.6 for the target. We’ve filed a bug with Arduino (here) but until that is resolved you can revert the Arduino core version back to v1.1.4 to compile your sketch.
Selecting the 1.1.4 Arduino core for the Arduino Nano 33 BLE Sense
No such file or directory: include <arm_math.h>
macro “min” passed 3 arguments, but takes just 2
If you’re compiling on a SAMD21-based target, you’ll see the above error. This is a known bug in the Arduino core for the SAMD21. If you apply the following patch the issue will go away.error: ‘va_start’ was not declared in this scope
This error can be seen while compiling for a SAMD21-based target. You will need to add the standard library in your sketch:Empty array when printing results
If the predictions are not properly printed, e.g.:Slow DSP operations
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):src/edge-impulse-sdk/dsp/config.hpp
file in the library and add, before #ifndef EIDSP_USE_CMSIS_DSP
:
Code compiling fails under Windows OS
- mbed platform.local.txt. Copy this file under the Arduino mbed directory, i.e:
C:\Users\MYUSER\AppData\Local\Arduino15\packages\arduino\hardware\mbed\1.1.4\
orC:\Users\MYUSER\AppData\Local\Arduino15\packages\arduino\hardware\mbed_nano\2.1.0\
- SAMD21 platform.local.txt. Copy this file under the Arduino SAMD directory, i.e:
C:\Users\MYUSER\AppData\Local\Arduino15\packages\arduino\hardware\samd\1.8.9\
- SAMD51 (Adafruit) platform.local.txt. Copy this file under the Arduino Adafruit SAMD directory, i.e:
C:\Users\MYUSER\AppData\Local\Arduino15\packages\adafruit\hardware\samd\1.6.3\
- ESP32 platform.local.txt. Copy this file under the Arduino ESP32 directory, i.e:
C:\Users\MYUSER\AppData\Local\Arduino15\packages\esp32\hardware\esp32\1.0.4\
- STM32 platform.local.txt. Copy this file under the Arduino STM32 directory, i.e:
C:\Users\MYUSER\AppData\Local\Arduino15\packages\esp32\hardware\stm32\1.9.0\