The Arduino Nano 33 BLE Sense is a tiny development board with a Cortex-M4 microcontroller, motion sensors, a microphone and BLE - and it's fully supported by Edge Impulse. You'll be able to sample raw data, build models, and deploy trained machine learning models directly from the studio. It's available for around 30 USD from Arduino and a wide range of distributors.
The Edge Impulse firmware for this development board is open source and hosted on GitHub: edgeimpulse/firmware-arduino-nano-33-ble-sense.


Arduino Nano 33 BLE Sense
Installing dependencies
To set this device up in Edge Impulse, you will need to install the following software:
- Node.js v12 or higher.
- Arduino CLI v0.13.
- Here's an instruction video for Windows.
- The Arduino website has instructions for macOS and Linux.
- The Edge Impulse CLI. Install by opening a command prompt or terminal and run:
npm install -g edge-impulse-cli
Problems installing the CLI?
See the Installation and troubleshooting guide.
Connecting to Edge Impulse
With all the software in place it's time to connect the development board to Edge Impulse.
1. Connect the development board to your computer
Use a micro-USB cable to connect the development board to your computer. Then press RESET twice to launch into the bootloader. The on-board LED should start pulsating to indicate this.


Press RESET twice quickly to launch the bootloader on the Arduino Nano 33 BLE Sense.
2. Update the firmware
The development board does not come with the right firmware yet. To update the firmware:
- Download the latest Edge Impulse firmware, and unzip the file.
- Open the flash script for your operating system (
flash_windows.bat
,flash_mac.command
orflash_linux.sh
) to flash the firmware. - Wait until flashing is complete, and press the RESET button once to launch the new firmware.
3. Setting keys
From a command prompt or terminal, run:
$ edge-impulse-daemon
This will start a wizard which will ask you to log in, and choose an Edge Impulse project. If you want to switch projects run the command with --clean
.
4. Verifying that the device is connected
That's all! Your device is now connected to Edge Impulse. To verify this, go to your Edge Impulse project, and click Devices. The device will be listed here.


Device connected to Edge Impulse.
Next steps: building a machine learning model
With everything set up you can now build your first machine learning model with these tutorials:
- Building a continuous motion recognition system.
- Recognizing sounds from audio.
- Responding to your voice.
Looking to connect different sensors? The Data forwarder lets you easily send data from any sensor into Edge Impulse.
Updated 9 days ago