-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the first version of a useful readme file. Spell checking is still pending. NPOS-8
- Loading branch information
Showing
6 changed files
with
103 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,106 @@ | ||
# MMM-NowPlayingOnSpotify | ||
A module for the [MagicMirror](https://github.com/MichMich/MagicMirror) project by [Michael Teeuw](https://github.com/MichMich) displaying the song currently playing on Spotify. | ||
|
||
|
||
[![Maintainability](https://api.codeclimate.com/v1/badges/2742abc792b88536f6e2/maintainability)](https://codeclimate.com/github/raywo/MMM-NowPlayingOnSpotify/maintainability) | ||
[![Test Coverage](https://api.codeclimate.com/v1/badges/2742abc792b88536f6e2/test_coverage)](https://codeclimate.com/github/raywo/MMM-NowPlayingOnSpotify/test_coverage) | ||
[![Known Vulnerabilities](https://snyk.io/test/github/raywo/mmm-NowPlayingOnSpotify/badge.svg?targetFile=package.json)](https://snyk.io/test/github/raywo/mmm-NowPlayingOnSpotify?targetFile=package.json) | ||
[![Greenkeeper badge](https://badges.greenkeeper.io/raywo/MMM-NowPlayingOnSpotify.svg)](https://greenkeeper.io/) | ||
A module for MagicMirror displaying the song currently playing on Spotify. | ||
[![dependency status](https://david-dm.org/raywo/MMM-NowPlayingOnSpotify.svg)](https://david-dm.org/raywo/MMM-NowPlayingOnSpotify) | ||
[![chat on gitter](https://badges.gitter.im/raywo.svg)](https://gitter.im/raywo) | ||
|
||
|
||
## How it works | ||
After installing the module and configuring and setting up the Spotify app the module displays the song you are currently listening to on Spotify. It shows on which of your devices you’re playing the song. If you like you can also display the album cover. | ||
|
||
To be able to display your currently playing song the module must connect to the Spotify service and query your private data. For obvious reasons this is not possible for arbitrary apps – or for that matter MagicMirror modules. There are third party solutions which will enable access to your Spotify data. This module is designed to be independent from third party services. Everything you need is in this module respectively is created by yourself. | ||
|
||
## Screenshots | ||
| ![Screenshot when nothing is playing](img/readme/screenshot_nothing_playing.png) | ![Screenshot of a song playing without cover art](img/readme/screenshot_without_coverart.png) | ![Screenshot of a song playing with cover art](img/readme/screenshot_with_coverart.png) | | ||
|---|---|---| | ||
| Nothing is playing. | A song is playing and `showCoverArt` is set to `false`. | A song is playing and `showCoverArt` is set to `true`. | | ||
|
||
## Preconditions | ||
|
||
* MagicMirror<sup>2</sup> instance | ||
* Node.js version >= 7 | ||
* npm | ||
|
||
|
||
## Installing | ||
Installing the module is quite straight forward. Getting it to display your playing songs requires a bit more work. | ||
|
||
### Step 1 – Install the module | ||
|
||
```bash | ||
git clone https://github.com/raywo/MMM-NowPlayingOnSpotify.git | ||
cd MMM-NowPlayingOnSpotify | ||
npm install | ||
``` | ||
|
||
### Step 2 – Create and authorise a Spotify app | ||
In order to be able to connect to the Spotify API you need to create an app in the [Spotify developer area](https://beta.developer.spotify.com/dashboard/applications). Then you need to authorise the app to access your personal data. Et voilà! | ||
|
||
The module provides you with a special app which describes all the necessary steps and which guides you through the whole process. To use this app change into the `authorization` folder and start the app by typing `node app`. | ||
|
||
```bash | ||
cd authorization | ||
node app | ||
``` | ||
|
||
When the app is running you can access it by opening `localhost:8888` in your browser. Provided you are doing this directly on your Raspberry Pi. If you want to access the app remotely just type the ip address or the name of your Raspberry like so for instance: `http://raspi:8888`. Then you should see the authorisation app like below. | ||
|
||
<center>![Screenshot for authorisation app](img/readme/screenshot_authorize_app.png)</center> | ||
|
||
Now just follow the steps described there. After successful authorisation the app will display a code snippet under the heading **Step 3: Configure your mirror**. Copy that snippet and paste it into your mirror’s `config.js`. Configure the rest to your needs and you’re good to go. | ||
|
||
|
||
## Updating | ||
|
||
Go to the module’s folder inside MagicMirror modules folder and pull the latest version from GitHub and install: | ||
|
||
```bash | ||
git pull | ||
npm install | ||
``` | ||
|
||
|
||
##Configuring | ||
There is not very much to configure but here are the options: | ||
|
||
| Option | Description | | ||
|--------|-------------| | ||
| `showCoverArt` | <p>A boolean value decribing whether an album cover photo should be displayed or not.</p><p>**Type:** `boolean` **OPTIONAL**<br>**Example:** `false`<br>**Default Value:** `true`</p> | | ||
| `updatesEvery` | <p>An integer determining the interval for display updates.</p><p>**Type:** `integer` **OPTIONAL**<br>**Example:** `5`<br>**Default Value:** `1`</p><p>**Note:** With the default setting the display is updated every second. So when you skip to the next song it is virtually immediately visible. Also the progress bar runs smoothly. If you increase the value you may relieve the strain on your Raspberry’s processor but your display will not be as up-to-date. </p> | | ||
| `clientID` | <p>A string describing the `clientID` of your Spotify app.</p><p>**Type:** `string` **REQUIRED**<br>**Example:** `"acecg8a4..."`<br>**Default Value:** none</p><p>**Note:** The easiest way to get that value is by copying the code snippet from step 3 in the [authorisation app](#step-2-–-create-and-authorise-a-spotify-app).</p> | | ||
| `clientSecret` | <p>A string describing the `clientSecret` of your Spotify app.</p><p>**Type:** `string` **REQUIRED**<br>**Example:** `"87978346..."`<br>**Default Value:** none</p><p>**Note:** The easiest way to get that value is by copying the code snippet from step 3 in the [authorisation app](#step-2-–-create-and-authorise-a-spotify-app).</p> | | ||
| `accessToken` | <p>A string describing the `accessToken ` of your Spotify app.</p><p>**Type:** `string` **REQUIRED**<br>**Example:** `"WaIO1987..."`<br>**Default Value:** none</p><p>**Note:** The easiest way to get that value is by copying the code snippet from step 3 in the [authorisation app](#step-2-–-create-and-authorise-a-spotify-app).</p> | | ||
| `refreshToken` | <p>A string describing the `refreshToken ` of your Spotify app.</p><p>**Type:** `string` **REQUIRED**<br>**Example:** `"HIuLH798..."`<br>**Default Value:** none</p><p>**Note:** The easiest way to get that value is by copying the code snippet from step 3 in the [authorisation app](#step-2-–-create-and-authorise-a-spotify-app).</p> | | ||
|
||
Here is an example for an entry in `config.js` | ||
|
||
```javascript | ||
{ | ||
module: "MMM-NowPlayingOnSpotify", | ||
position: "top_right", | ||
|
||
config: { | ||
showCoverArt: false, | ||
clientID: "<YOUR_CLIENT_ID>", | ||
clientSecret: "<YOUR_CLIENT_SECRET>", | ||
accessToken: "<YOUR_ACCESS_TOKEN>", | ||
refreshToken: "<YOUR_REFRESH_TOKEN>" | ||
} | ||
} | ||
``` | ||
|
||
|
||
## Special Thanks | ||
|
||
* [Michael Teeuw](https://github.com/MichMich) for inspiring me and many others to build a MagicMirror module. | ||
* The community of magicmirror.builders for help in the development process and all contributors for finding and fixing errors in this module. | ||
|
||
|
||
## Contributing | ||
|
||
If you find any problems, bugs or have questions, please [open a GitHub issue](https://github.com/raywo/MMM-NowPlayingOnSpotify/issues) in this repository. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,6 @@ | |
"engines": { | ||
"node": ">=7" | ||
}, | ||
|
||
"dependencies": { | ||
"cookie-parser": "1.4.3", | ||
"express": "~4.16.0", | ||
|