This is a module for the MagicMirror². It displays sleep data from your Oura sleep tracker.
- Go to MagicMirror's
modules
. - Run
git clone https://github.com/erchenger/MMM-Oura
. - Go into the newly created directory:
cd MMM-Oura
. - Run
npm install
to install the node dependencies.
To use this module, add the following configuration block to the modules array in the config/config.js
file:
var config = {
modules: [
{
module: "MMM-Oura",
position: 'top_right', // Or any other region
config: {
// See below for configurable options
}
}
]
};
Option | Description |
---|---|
apiKey |
Required Your Oura personal access token |
interval |
Optional Interval in seconds how often the data should be fetched Type: int (seconds) Default 3600 seconds (1 hour) |