Skip to content

Creating a new Magic Mirror module to load and display a user's Oura data.

Notifications You must be signed in to change notification settings

themox/MMM-Oura2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MMM-Oura2

Module for the MagicMirror² smart mirror.

Displays a user's Oura data in a chart. Inspired by https://github.com/erchenger/MMM-Oura, but I was looking for a little more data. Still a work in progress but feature requests and feedback are welcome.

This module uses a python backend, primarily through Pandas, to download the data from Oura. On a request for update (on load, or on the pre-programmed interval), the javascript module sends a request to the python for updated data.
The python downloads that data from Oura, processes through Pandas for data formatting and management, and then pushes back to the javascript in an easily parsable format. On receipt, the javascript pushes that into a chart.js canvas, which is then rendered by the getDom function when called.

  • Which features would you like to see?
  • Which charts would you like to see?

Example

Example of MMM-Oura2

Dependencies

  1. Chart.js
  2. Python3, including the following modules/packages:
    *Pandas
    *Numpy
    *Requests

Assumes python3 is located at /usr/bin/python3

Installation

To install the module, use your terminal to:

  1. Navigate to your MagicMirror's modules folder. If you are using the default installation directory, use the command:
    cd ~/MagicMirror/modules
  2. Clone the module:
    git clone https://github.com/themox/MMM-Oura2.git
  3. Install Chart.js framework:
    npm install chart.js
  4. Ensure you have the correct Python version (3+) and libraries installed.

Using the module

MagicMirror² Configuration

To use this module, add the following configuration block to the modules array in the config/config.js file:

var config = {
    modules: [
        ...
        {
            module: 'MMM-Oura2',
            header: "Oura Data",
            position: "top_left",
            config: {
		token: "",              // REQUIRED. your personal access token for Oura
                charts: ["heartrate"],  // Which charts to display; currently one or both of ["sleep", "heartrate", "scores"]; eventually to be several
                unit:  "weeks",         // One of [months, days, weeks]
                interval: 1,            // Integer interval to combine with unit for length of time to get & display data
                ...
                // See below for detailed Configuration Options
            }
        },
        ...
    ]
}

Configuration Options

Option Details
token Required - Your Oura Personal Access token - see Oura documentation
charts Required - Array of which charts to display. All charts will get the same style information from the below configuration options.
Possible values: sleep scores heartrate activity
Default value: ["scores"]
unit Required - Combined with interval, amount of days to display in chart
Possible values: months weeks days
Default value: weeks
interval Required - Integer number to combine with unit for number of days to display in chart (e.g. 1 weeks will give 7 days)
Default value: 1
updateInterval Interval at which content updates (milliseconds); recommend keeping this large as it does not need updating that often
Possible values: 2000 - 86400000
Default value: 10000 * 60 * 60 (60 minutes)
palette One of four different color palettes to use when choosing line color.
Possible values: 0 - 3
Default value: 0
lineWeight Integer line thickness for each series

Possible values: 0 - 10
Default value: 1
dotWeight Integer point size

Possible values: 0 - 10
Default value: 3
chartTextColor Color of text on chart, including labels, legend, etc. Conforms to Chart.js Color styles
Default value: gray
chartGridColor Color of gridlines on chart, also conforms to Chart.js Color styles
Default value: rgba(50, 50, 50, .8)
fontSize Integer font size for chart labels
Default value: 12
fontFamily Which font or font family to use for chart text; see Chart.js fonts
Default value: Roboto Condensed
legendPosition Where on the chart to display the legend; conforms to Chart.js legend styling
Default value: bottom

About

Creating a new Magic Mirror module to load and display a user's Oura data.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published