Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Sispheor/MMM-quote-of-the-day
Magic Mirror module to show a random quote from an online collection of quotations by authors, celebrities, and newsmakers.
https://github.com/Sispheor/MMM-quote-of-the-day
Last synced: 23 days ago
JSON representation
Magic Mirror module to show a random quote from an online collection of quotations by authors, celebrities, and newsmakers.
- Host: GitHub
- URL: https://github.com/Sispheor/MMM-quote-of-the-day
- Owner: Sispheor
- Created: 2018-03-13T21:47:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T17:10:51.000Z (almost 2 years ago)
- Last Synced: 2024-11-15T21:24:30.730Z (28 days ago)
- Language: JavaScript
- Size: 45.9 KB
- Stars: 28
- Watchers: 1
- Forks: 9
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mmm - **MMM-Quote-of-the-Day**
README
# MMM-quote-of-the-day
Module to get a random quote from various authorship.
This module is based on the [Forismatic](http://forismatic.com/en/) API.
Quotes are only available in English but they can be translated on the fly in the language of your choice. The translation is based on the Google API.
The quote is renewed following a configurable update interval.![quote-of-the-day_english](images/quote-of-the-day_english_example.png)
## Installation
Clone this repo into `~/MagicMirror/modules` directory. Then move in the folder and install required libraries
```
cd MMM-quote-of-the-day
npm install
```Configure your `~/MagicMirror/config/config.js`:
```js
{
module: "MMM-quote-of-the-day",
position: "lower_third",
config: {
language: "en",
updateInterval: "1d"
}
}
```## Configuration option
| Option | Default | Description |
|----------------|---------|--------------------------------------------------------------------------------------------------------------------------------------------------------|
| language | en | [ISO-639-1 code of the language](https://cloud.google.com/translate/docs/languages) of the quote. Will be translated via google API if not set to "en" |
| updateInterval | 1d | Time between each update of the quote. Composed by an integer followed by a letter "s" or "m" or "h" or "d" for second, minute, hour or day. |Example of `updateInterval`:
- **1d**: update the quote every day
- **4h**: update the quote every 4 hours
- **30m**: update the quote every 30 minutes## External control
### From my module by using internal notification
You can send notification to this module via your own module. by using the `sendNotification` method.
Update the quote from my module:
```js
this.sendNotification("QUOTE-OF-THE-DAY", "getNewQuote")
```### From MM API
To get a new quote from the API. Send a **POST** request to the **/quote-of-the-day** URI of your Magic Mirror
Curl example:
```
curl -H "Content-Type: application/json" -X POST -d '{"notification":"QUOTE-OF-THE-DAY", "payload": "getNewQuote"}' http://localhost:8080/quote-of-the-day
```### From Kalliope
Here is an example of usage via [Kalliope assistant](https://github.com/kalliope-project/kalliope_neuron_magic_mirror)
```yml
- name: "new-quote"
signals:
- order: "give me a new quote"
neurons:
- magic_mirror:
mm_url: "http://127.0.0.1:8080/kalliope"
notification: "QUOTE-OF-THE-DAY"
payload: "getNewQuote"
- say:
message: "here is a new quote"
```See an [example video here](https://youtu.be/eWxtJsHDU2o).