MyFitnessPal MagicMirror module
This MagicMirror Module is designed to display your personal MyFitnessPal data. Since MyFitnessPal API is not really public at this point, this module uses a python script to grab your data and passes to the node.js module.
In your terminal, navigate to your MagicMirror modules folder:
cd ~/MagicMirror/modules
Clone this repository:
git clone https://github.com/NateDee/MMM-MFP.git
Configure the module in your config.js file.
To use this module, add it to the modules array in your config.js file.
modules: [
{
username: "yourMFPlogin",
passwd: "yourMFPpassword",
updateTime: 60 * 1000 * 5, // Run every 5 minutes by default
usernickname: "Nate",
},
]
Option | Description |
---|---|
username |
Your MyFitnessPal login username. Expected Value type: string |
passwd |
Your MyFitnessPal password to your account. Expected Value type: string |
updateTime |
How often the python script should look for updates, every 5 minutes is the default and likely more than enough. Expected Value type: int |
usernickname |
This will display your choosen name at the header of the MFP module. Expected Value type: string |