Continuous inferencing on the Arduino Nano
As you can guess, the application deployment differs on the Arduino Nano and the Raspberry Pi Pico because the devices have different hardware capabilities.
In this recipe, we will show how to implement a continuous keyword application on the Arduino Nano.
The following Arduino sketch contains the code referred to in this recipe:
07_kws_arduino_nano_ble33_sense.ino
:
Getting ready
The application on the Arduino Nano will be based on the nano_ble33_sense_microphone_continuous.cpp
example provided by Edge Impulse, which implements a real-time KWS application. Before changing the code, we want to examine how this example works to get ready for the recipe.
Learning how a real-time KWS application works
A real-time KWS application—for example, the one used in the smart assistant—...