Language Drills with Raspberry Pi

Productivity Sauce
After a long pause, I'm back to my favorite pastime: learning foreign languages. But this time, I've enlisted Raspberry Pi as a little language learning tool. Currently, I'm using an audio language course, and Raspberry Pi helps me memorize the words and phrases I learn. The way this works is very simple. I chop each audio lesson into sentences and phrases using Audacity and save them as MP3 files in a separate directory. Raspberry Pi is hooked to a breadboard with a push button and a resistor as shown on the diagram.
When I push the button, a Python script picks a random mp3 file and plays it. The script is rather simple, and it uses the mpg321 player to play mp3 files.
#!/usr/bin/env python from time import sleep import os, random import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(17, GPIO.IN) while True: if (GPIO.input(17) == False ): randomfile = random.choice(os.listdir("./mp3")) print randomfile os.system('mpg321 ./mp3/'+ randomfile +' &') sleep(0.1);
The script requires several packages which can be installed using the sudo apt-get install python-dev python-rpi.gpio mpg321 command.
This is just a very rough prototype, and there are a lot of things that can be improved and tweaked. For example, I'm thinking about using an LDR (light-dependent resistor) to play a random file when light hits it. This way, I can place Raspberry Pi into a fridge, so it plays random files every time I open the door. Another possibility is to hook up a dot-matrix LCD screen and make Raspberry Pi display random words and phrases. Honestly, with so many ideas, I'm not sure whether I have time to learn Japanese.
comments powered by DisqusIssue 270/2023
Buy this issue as a PDF
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
OpenMandriva Lx 23.03 Rolling Release is Now Available
OpenMandriva "ROME" is the latest point update for the rolling release Linux distribution and offers the latest updates for a number of important applications and tools.
-
CarbonOS: A New Linux Distro with a Focus on User Experience
CarbonOS is a brand new, built-from-scratch Linux distribution that uses the Gnome desktop and has a special feature that makes it appealing to all types of users.
-
Kubuntu Focus Announces XE Gen 2 Linux Laptop
Another Kubuntu-based laptop has arrived to be your next ultra-portable powerhouse with a Linux heart.
-
MNT Seeks Financial Backing for New Seven-Inch Linux Laptop
MNT Pocket Reform is a tiny laptop that is modular, upgradable, recyclable, reusable, and ships with Debian Linux.
-
Ubuntu Flatpak Remix Adds Flatpak Support Preinstalled
If you're looking for a version of Ubuntu that includes Flatpak support out of the box, there's one clear option.
-
Gnome 44 Release Candidate Now Available
The Gnome 44 release candidate has officially arrived and adds a few changes into the mix.
-
Flathub Vying to Become the Standard Linux App Store
If the Flathub team has any say in the matter, their product will become the default tool for installing Linux apps in 2023.
-
Debian 12 to Ship with KDE Plasma 5.27
The Debian development team has shifted to the latest version of KDE for their testing branch.
-
Planet Computers Launches ARM-based Linux Desktop PCs
The firm that originally released a line of mobile keyboards has taken a different direction and has developed a new line of out-of-the-box mini Linux desktop computers.
-
Ubuntu No Longer Shipping with Flatpak
In a move that probably won’t come as a shock to many, Ubuntu and all of its official spins will no longer ship with Flatpak installed.