Learn a language Magic Mirror Module
Posted

Magic Mirror Module for learning a word every time you look in the mirror.
Installation
Navigate into your MagicMirror’s modules folder and execute
git clone https://github.com/thekampany/MMM-learnlanguage
Using the module
This module shows a word of a language you want to learn, alternating with the meaning in english. Train yourself. You will have to learn the grammar of the language somewhere else. This just helps in getting to know a set of commonly used words. The set of commonly used words is stored in a csv file per language.
Config options
option | description |
language | language: spanish, swedish. has to match the name of the csv file that contains the wordpairs. |
nextWordInterval | In miliseconds. The interval between wordpairs. One word per day = 24*3600*1000. Two words per day = 12*3600*1000 |
Example configuration to put in config.js
{
module: "MMM-learnlanguage",
position: "top_right",
config: {
language: "spanish",
nextWordInterval: 90000,
}
},
ToDo
Use a translation api in order to be able to translate from any to any language. Influence the interval showing foreignlanguage vs ownlanguage (english).