Fresh-Coffee-Listener
A typical datarootsian consumes high-quality fresh coffee in their office environment. The board of dataroots had a very critical decision by the end of 2021-Q2 regarding coffee consumption. From now on, the total number of coffee consumption stats have to be audited live via listening to the coffee grinder sound in Raspberry Pi, because why not?
Overall flow to collect coffee machine stats
- Relocate the Raspberry Pi microphone just next to the coffee machine
- Listen and record environment sound at every 0.7 seconds
- Compare the recorded environment sound with the original coffee grinder sound and measure the Euclidean distance
- If the distance is less than a threshold it means that the coffee machine has been started and a datarootsian is grabbing a coffee
- Connect to DB and send timestamp, office name, and serving type to the DB in case an event is detected ( E.g. 2021-08-04 18:03:57, Leuven, coffee )
Raspberry Pi Setup
- Hardware: Raspberry Pi 3b
- Microphone: External USB microphone (doesn't have to be a high-quality one). We also bought a microphone with an audio jack but apparently, the Raspberry Pi audio jack doesn't have an input. So, don't do the same mistake and just go for the USB one :)
- OS: Raspbian OS
- Python Version: Python 3.7.3. We used the default Python3 since we don't have any other python projects in the same Raspberry Pi. You may also create a virtual environment.
Detecting the Coffee Machine Sound
- In the
sounds
folder, there is acoffee-sound.m4a
file, which is the recording of the coffee machine grinding sound for 1 sec. You need to replace this recording with your coffee machine recording. It is very important to note that record the coffee machine sound with the external microphone that you will use in Raspberry Pi to have a much better performance. - When we run
detect_sound.py
, it first reads thecoffee-sound.m4a
file and extracts its MFCC features. By default, it extracts 20 MFCC features. Let's call these featuresoriginal sound features
- The external microphone starts listening to the environment for about 0.7 seconds with a 44100 sample rate. Note that the 44100 sample rate is quite overkilling but Raspberry Pi doesn't support lower sample rates out of the box. To make it simple we prefer to use a 44100 sample rate.
- After each record, we also extract 20
MFCC
features and compute the Euclidean Distance between theoriginal sound features
andrecorded sound features
. - We append the
Euclidean Distance
to a python deque object having size 3. - If the maximum distance in this deque is less than
self.DIST_THRESHOLD = 85
, then it means that there is a coffee machine usage attempt. Feel free to play with this threshold based on your requirements. You can simply comment outline 66
ofdetect_sound.py
to print the deque object and try to select the best threshold. We prefer to check 3 events (i.e having deque size=3) subsequently to make it more resilient to similar sounds. - Go back to step 3, if the elapsed time is < 12 hours. (Assuming that the code will run at 7 AM and ends at 7 PM since no one will be at the office after 7 PM)
- Exit
Scheduling the coffee listening job
We use a systemd service and timer to schedule the running of detect_sound.py
. Please check coffee_machine_service.service
and coffee_machine_service.timer
files. This timer is enabled in the makefile
. It means that even if you reboot your machine, the app will still work.
coffee_machine_service.service
In this file, you need to set the correct USER
and WorkingDirectory
. In our case, our settings are;
User=pi
WorkingDirectory= /home/pi/coffee-machine-monitoring
To make the app robust, we set Restart=on-failure
. So, the service will restart if something goes wrong in the app. (E.g power outage, someone plugs out the microphone and plug in again, etc.). This service will trigger make run
the command that we will cover in the following sections.
coffee_machine_service.timer
The purpose of this file is to schedule the starting time of the app. As you see in;
OnCalendar=Mon..Fri 07:00
It means that the app will work every weekday at 7 AM. Each run will take 7 hours. So, the app will complete listening at 7 PM.
Setup a PostgreSQL Database
You can set up a PostgreSQL database at any remote platform like an on-prem server, cloud, etc. It is not advised to install it to Raspberry Pi.
-
Install and setup a PostgreSQL server by following the official documentation
-
Create a database by typing the following command to the PostgreSQL console and replace
DB_NAME
with your database name;createdb DB_NAME
If you got an error, check here
-
Create a table by running the following query in your PostgreSQL console by replacing
DB_NAME
andTABLE_NAME
with your own preference;CREATE TABLE DB_NAME.TABLE_NAME ( "timestamp" timestamp(0) NOT NULL, office varchar NOT NULL, serving_type varchar NOT NULL );
-
Create a user, password and give read/write access by replacing
DB_USER
,DB_PASSWORD
,DB_NAME
andDB_TABLE
create user DB_USER with password 'DB_PASSWORD'; grant select, insert, update on DB_NAME.DB_TABLE to DB_USER;
Deploying Fresh-Coffee-Listener app
-
Installing dependencies: If you are using an ARM-based device like Raspberry-Pi run
make install-arm
For other devices having X84 architecture, you can simply run
make install
-
Set Variables in makefile
COFFEE_AUDIO_PATH
: The absolute path of the original coffee machine sound (E.g./home/pi/coffee-machine-monitoring/sounds/coffee-sound.m4a
)SD_DEFAULT_DEVICE
: It is an integer value represents the sounddevice input device number. To find your external device number, runpython3 -m sounddevice
and you will see something like below;0 bcm2835 HDMI 1: - (hw:0,0), ALSA (0 in, 8 out) 1 bcm2835 Headphones: - (hw:1,0), ALSA (0 in, 8 out) 2 USB PnP Sound Device: Audio (hw:2,0), ALSA (1 in, 0 out) 3 sysdefault, ALSA (0 in, 128 out) 4 lavrate, ALSA (0 in, 128 out) 5 samplerate, ALSA (0 in, 128 out) 6 speexrate, ALSA (0 in, 128 out) 7 pulse, ALSA (32 in, 32 out) 8 upmix, ALSA (0 in, 8 out) 9 vdownmix, ALSA (0 in, 6 out) 10 dmix, ALSA (0 in, 2 out) * 11 default, ALSA (32 in, 32 out)
It means that our default device is
2
since the name of the external device isUSB PnP Sound Device
. So, we will set it asSD_DEFAULT_DEVICE=2
in our case.OFFICE_NAME
: it's a string value likeLeuven office
DB_USER
: Your PostgreSQL database usernameDB_PASSWORD
: the password of the specified userDB_HOST
: The host of the databaseDB_PORT
: Port number of the databaseDB_NAME
: Name of the databaseDB_TABLE
: Name of the table
-
Sanity check: Run
make run
to see if the app works as expected. You can also have a coffee to test whether it captures the coffee machine sound. -
Enabling systemd commands to schedule jobs: After configuring
coffee_machine_service.service
andcoffee_machine_service.timer
based on your preferences, as shown above, run to fully deploy the app;make run-systemctl
-
Check the
coffee_machine.logs
file under the project root directory, if the app works as expected -
Check service and timer status with the following commands
systemctl status coffee_machine_service.service
and
systemctl status coffee_machine_service.timer
Having Questions / Improvements ?
Feel free to create an issue and we will do our best to help your coffee machine as well :)