OpenEarable is a new, open-source, Arduino-based platform for ear-based sensing applications. It provides a versatile prototyping platform with support for various sensors and actuators, making it suitable for earable research and development.
This firmware is compatible with hardware version:
⚠️ $${\rm\color{red}Please~Note:}$$ We recommend deploying the firmware using the open-earable-PlatformIO wrapper.
OpenEarable is designed to enable ear-based sensing applications by offering a flexible and open-source hardware platform. It incorporates a range of sensors, including a 9-axis inertial measurement unit, an ear canal pressure and temperature sensor, an inward-facing ultrasound microphone, a speaker, a push button, and a controllable RGB LED. With these features, OpenEarable provides researchers and developers with the ability to explore various application scenarios. For more information visit the OpenEarable website.
OpenEarable is controlled and streams sensor data via BLE (Bluetooth Low Energy). Audio is played from and recorded to the internal SD card (required card SanDisk Extreme Class 3, must be formatted as exFAT). OpenEarable is compatible with the provided dashboard and edge-ml.
⚠️ $${\rm\color{red}Please~Note:}$$ We recommend deploying the firmware using the open-earable-PlatformIO wrapper.
Download and install the Arduino IDE. OpenEarable is based on the "Arduino Nano 33 BLE Sense" board. Therefore, you first have to install the required dependencies ("Arduino Mbed OS Nano Boards" via boards manager) in your Arduino IDE following this Setup Guide.
The following Arduino Libraries have to be installed in your Arduino IDE by navigating to Sketch -> Include Library -> Manage Libraries
:
In order to be compatible with the OpenEarable library the SD card needs to be formatted with the exFAT format. Make sure to have a sufficiently fast SD card. (Required SD Card: SandDisk class 10 and class A30)
The default Arduino implementation of the SPI library does not meet the required speed. To address this, optimized SPI files are provided. Follow the steps below to integrate these files into Arduino. All referenced files can be found in the "resources" folder in the "spi_files" subfolder.
To fully integrate the optimized SPI files, changes to the Arduino Nano 33 BLE board files have to be made. Follow the steps below to accomplish this:
Navigate to the Arduino15 folder as described in this tutorial.
Navigate to the following directory: packages/arduino/hardware/mbed_nano/4.0.4/libraries
. Please note: If you have a different version than mbed_nano 4.0.4 installed or you don't have it installed at all, you can change or add it by navigating to Tools -> Board -> Boards Manager
. Search for Arduino Mbed OS Nano Boards
and install the desired version.
Locate the existing SPI
library folder within this directory. It needs to be swapped with the provided folder named "SPI" in "resources/spi_files" found in this repository.
Locate the existing Wire
library folder within the libraries folder. It needs to be swapped with the provided folder named "Wire" in "resources/wire_files" found in this repository (make sure to delete the Wire.cpp file).
Navigate to the following directory in the Arduino15
directory: packages/arduino/hardware/mbed_nano/4.0.4/cores/arduino
.
Place the files RingBuffer.h
and RingBuffer.cpp
from "resources/wire_files" into this folder.
Similarly, navigate to the following directory: packages/arduino/hardware/mbed_nano/4.0.4/cores/arduino/mbed/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_SDK_15_0/modules/nrfx/drivers
.
In the subdirectory include
, locate the file named nrfx_spim.h
and replace it with the provided nrfx_spim.h
file from the resources/spi_files
folder of this repository.
In the subdirectory src
, place the nrfx_spim.c
file provided under resources/spi_files
of this repository (note: you will not find an existing file named nrfx_spim.c).
Navigate back to the Arduino15
folder. Navigate to packages/arduino/hardware/mbed_nano/4.0.4/variants/ARDUINO_NANO33BLE
. Replace pins_arduino.h
and variant.cpp
with the files provided under resources/variant
of this repository.
One of the library dependencies is the SdFat library from Bill Greiman. This library is used to send data to the SD card. To achieve the desired write speeds of up to 1.5Mbps the library has to be modified slighlty.
Go to the Arduino/libraries
folder, locate the SdFat_-_Adafruit_Fork
library folder and open it. (Note: typically, the Arduino libraries folder is located at ~/Documents/Arduino/libraries
)
Inside the src
folder, replace the SdFatConfig.h
with the provided SdFatConfig.h
file found in the resources/sdfat_config
folder of this repository.
The BMP280 library has to be slightly modified.
Arduino/libraries
folder (commonly found in your Documents
folder) and locate the Adafruit_BMP280_Library
folder.Adafruit_BMP280.cpp
and Adafruit_BMP280.h
with the files found in the resources/Adafruit_BMP280_Library
folder of this repository.To make sure that all your changes are applied correctly, restart your computer.
Now that all dependencies are configured, the last step is to install this repository as a library as follows:
Sketch -> Include Library -> Add .ZIP Library....
Once done, the library should be available in the Sketch -> Include Library
menu.
The easiest way to use OpenEarable is with the provided App sketch.
It can be found within Arduino under File -> Examples-> OpenEarable -> App
.
The absolute minimum needed to run the code successfully is the following:
#include "Arduino.h"
#include "OpenEarable.h"
void setup()
{
open_earable.begin();
}
void loop()
{
open_earable.update();
}
With this minimum sketch, all internal functionality is activated and OpenEarable becomes controllable via our Dashboard, via EdgeML, and via the BLE API.
To flash the firmware, make sure you select Arduino Nano 33 BLE
as target and the port that your OpenEarable is connected to. Then simply press the Upload
arrow.
OpenEarable can be directly connected to our Dashboard.
OpenEarable is seamlessly integrated with edge-ml.org, an open-source and browser-based toolchain for machine learning on microcontrollers.
The following table contains the BLE specifications with the available Services and Characteristics as well as UUIDs. The first 3 Services are from the EdgeML-Arduino library.
Note: to configure sensors via BLE see Sensor Configuration.
Specification Table:
Service Name | Service UUID | Characteristic Name | Characteristic UUID | Permissions |
---|---|---|---|---|
Sensor Service | 34c2e3bb-34aa-11eb-adc1-0242ac120002 |
Sensor Configuration | 34c2e3bd-34aa-11eb-adc1-0242ac120002 |
Write |
Sensor Data | 34c2e3bc-34aa-11eb-adc1-0242ac120002 |
Read/Notify | ||
Device Info Service | 45622510-6468-465a-b141-0b9b0f96b468 |
Device Identifier | 45622511-6468-465a-b141-0b9b0f96b468 |
Read |
Device Generation | 45622512-6468-465a-b141-0b9b0f96b468 |
Read | ||
Parse Info Service | caa25cb7-7e1b-44f2-adc9-e8c06c9ced43 |
Scheme | caa25cb8-7e1b-44f2-adc9-e8c06c9ced43 |
Read |
Audio Service | 5669146e-476d-11ee-be56-0242ac120002 |
Source | 566916a8-476d-11ee-be56-0242ac120002 |
Read/Notify/Write |
State | 566916a9-476d-11ee-be56-0242ac120002 |
Read/Notify/Write | ||
Battery Service | 180F |
Battery Level | 2A19 |
Read/Notify |
Button Service | 29c10bdc-4773-11ee-be56-0242ac120002 |
Button State | 29c10f38-4773-11ee-be56-0242ac120002 |
Read/Notify |
LED Service | 81040a2e-4819-11ee-be56-0242ac120002 |
LED Set State | 81040e7a-4819-11ee-be56-0242ac120002 |
Write |
Permissions: Write
This characteristic is used to send a sensor configuration to the Earable.
Configuration Package:
Byte 0 | Byte 1-4 | Byte 5-8 |
---|---|---|
SensorID | Sample Rate | Latency |
uint8 | float | uint32 |
SensorID: ID of the sensor.
Sample Rate: Desired sample rate.
Latency: Legacy field. Repurposed to control microphone gain as shown later.
Each sensor or audio IO can be enabled individually or together at the same time with predefined configurations. It is recommended to use the predefined configurations.
To use the redefined configurations, Please refer to the implementation details below.
Permissions: Read/Notify
This Characteristic is responsible for sending data packages from the Earable to the connected device.
Data Package:
Byte 0 | Byte 1 | Byte 1-4 | Byte 5-X |
---|---|---|---|
SensorID | Size | Time Stamp | Data Array |
uint8 | uint8 | uint32 | --- |
SensorID: ID of the sensor.
Size: Length of the data array.
Time Stamp: Timestamp in milliseconds.
Data Array: Array of bytes, which need to be parsed according the sensors parsing scheme.
Permissions: Read
This characteristic is used to get the Device Identifier string.
Permissions: Read
This characteristic is used to get the Device Generation string.
Permissions: Read
With this characteristic the parsing scheme information can be requested from the device. The parsing scheme is needed to convert a received data package to usable values. More information about parsing the scheme can be found in the EdgeML-Arduino library.
The Audio Player service consists of two characteristics. One to set the audio source and one two controll the playing state of the player. To properly set a new source.
Permissions: Read/Write
This characteristic is used to set the source of the audio player. Writing to this characteristic will result in stopping the player and playing from the new source.
The first byte of the characteristic indicates the source type being:
The meaning of the remaining remaining bytes depends on the source type and is given for each type below.
Play Package:
Byte 0 | Byte 1 | Byte 2-X |
---|---|---|
0 | - | - |
uint8 | uint8 | char array |
Byte 0 | Byte 1 | Byte 2-X |
---|---|---|
1 | name length | file name |
uint8 | uint8 | char array |
The file on the SD Card has to be in the format:
Byte 0 | Byte 1 | Byte 2-6 | Byte 7-11 |
---|---|---|---|
2 | Waveform | frequency | amplitude [0, 1] |
uint8 | uint8 | float | float |
Available Waveforms are:
Byte 0 | Byte 1 | Byte 2-X |
---|---|---|
3 | ID | - |
uint8 | uint8 | char array |
Jingle IDs:
Permissions: Read/Write/Notify Sets the state of the player.
State (uint8):
Permissions: Read/Notify
Read the current battery level. The read value is a 1 byte int from 0-100 representing battery charge in percent.
Permissions: Read/Notify
Read the current charging state:
The read value is a 1 byte uint8
Permissions: Read/Notify
Sends the state of the button as a 1 byte int. A notification is sent once a change of button state has occurred.
The states are:
Permissions: Read/Write
Set LED state as 3 byte RGB value.
Byte 0 | Byte 1 | Byte 2-X |
---|---|---|
Red value | Green value | Blue value |
uint8 | uint8 | uint8 |
OpenEarable is based on the Arduino Nano 33 BLE and uses the respective bootloader with Mbed OS. Under "resources/Arduino_Nano_33_bootloader" the bootloader binary can be found as well.
A handy header file with all the pin definition is provided. For reference look at the "Earable_Pins.h".
The easiest way to use edge-ml is with the provided App
sketch.
However, there are a few more functionalities.
Note: The majority of the following functions should be called BEFORE the edge_ml_earable.begin()
function.
void debug(Stream &stream)
Set a IO stream for debugging purposes.
edge_ml_earable.debug(Serial);
void configure_sensor(SensorConfigurationPacket& config)
Send a configuration package from within the code.
void stop_all_sensors()
Turn of all sensors and stop streaming sensor data via ble.
Via the EdgeML pipeline or the configure_sensor
function the sensor, PDM mic, and audio playback can be started or stopped.
The sensor IDs can be found in the "src/custom_sensor/SensorID_Earable.h".
A configuration packet is implemented as struct:
struct SensorConfigurationPacket {
uint8_t sensorId{};
float sampleRate{};
uint32_t latency{};
};
Byte 0 | Byte 1-4 | Byte 5-8 |
---|---|---|
SensorID | Sample Rate | Latency |
uint8 | float | uint32 |
SensorID: ID of the sensor.
Sample Rate: Desired sample rate.
Latency: Legacy field which is mostly ignored. However, it has been repurposed as shown later.
Each sensor or audio IO can be enabled individually or together at the same time with predefined configurations. It is recommended to use the predefined configurations.
The available predefined Sensors:
Sensor ID: 0
The IMU provides acceleration, gyroscope, and magnetometer values in xyz.
(max. 50Hz alone; max. 30Hz with other sensors)
Data Array structure:
Byte 0-3 | Byte 4-7 | Byte 8-11 | Byte 12-15 | Byte 16-19 | Byte 20-23 | Byte 24-27 | Byte 28-31 | Byte 32-35 |
---|---|---|---|---|---|---|---|---|
IMU X | IMU Y | IMU Z | GYRO X | GYRO Y | GYRO Z | MAG X | MAG Y | MAG Z |
float | float | float | float | float | float | float | float | float |
Sensor ID: 1
The BME provides in ear air pressure measurements as well as temperature data of the earable.
(max. 50Hz alone; max. 30Hz with other sensors)
Data Array structure:
Byte 0-3 | Byte 4-7 |
---|---|
PRESSURE | TEMPERATURE |
float | float |
Sensor ID: 2
The PDM Microphone provides audio data up to 62.5kHz if using one microphone. Since hardware version 1.4, OpenEarable has two microphones, however, if using both microphones the maximum sampling rate of 62.5 kHz can not be achieved because of bandwidth issues. The sample rate files of the configuration package is the audio sample rate of the sensor.
The available sampling rates are:
Most recommended are:
To configure the gain of the microphones, byte 5 and 6 of the sensor configuration package (legacy latency field) can be set (inner / outer microphone). Gain is represtend from 0 to 80 (-20 to +20 dB in 0.5 dB steps) as int_8. If the gain byte has a negative int_8 value, the resepective microphone channel will be disabled.
The earable features a button at its side. A software debounced interface is already included with the earable_btn
Button instance.
It includes the following functionality:
ButtonState getState()
Returns the button state either being
The button state is updated by interrupt.
void setDebounceTime(unsigned long debounceTime)
Set debounce time in ms. (Default 25ms)
The earable features an RGB LED.
It includes the following functionality:
Set the RGB color of the LED.
RGBColor red = {255,0,0};
earable_led.set_color(red);
@inproceedings{10.1145/3544793.3563415,
title = {OpenEarable: Open Hardware Earable Sensing Platform},
author = {Röddiger, Tobias and King, Tobias and Roodt, Dylan Ray and Clarke, Christopher and Beigl, Michael},
year = 2023,
booktitle = {Proceedings of the 1st International Workshop on Earable Computing},
location = {Cambridge, United Kingdom},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
series = {EarComp’22},
pages = {29–34},
doi = {10.1145/3544793.3563415},
url = {https://doi.org/10.1145/3544793.3563415},
numpages = 6,
keywords = {In-Ear Headphones, IMU, Monitoring}
}